Soap.XSBuiltIns.TXSHexBinary.HexBinaryString

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property  HexBinaryString: string read FHexBinaryString write FHexBinaryString;

C++

__property System::UnicodeString HexBinaryString = {read=FHexBinaryString, write=FHexBinaryString};

Properties

Type Visibility Source Unit Parent
property public
Soap.XSBuiltIns.pas
Soap.XSBuiltIns.hpp
Soap.XSBuiltIns TXSHexBinary

Description

Represents the object's value as a string.

Use HexBinaryString to obtain the value of the TXSHexBinary object. This value is represented as the string that appears in XML documents to represent the hexadecimal value.

To work with the value as an array of bytes, use the AsByteArray property instead. You can convert an integer to a string that can be assigned to this property using the global IntToHex function.

See Also