ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Formats.XMP Namespace / ImGearXMPReal Class / BinRepQualifier Property




In This Topic
    BinRepQualifier Property
    In This Topic
    Gets the optional Binary Representation qualifier. The qualifier provides binary representation of the floating point value when an exact value is needed. The text of the qualifier is interpreted as:

    std size,endian,hexadecimal_value

    - std is the standard name ("IEEE754")

    - size is S for 32-bit and D for 64-bit

    - endian is L for little-endian, B for big-endian.

    For example: "IEEE754D,L,3A4901F387D31108".

    Syntax
    'Declaration
     
    Public ReadOnly Property BinRepQualifier As String
    'Usage
     
    Dim instance As ImGearXMPReal
    Dim value As String
     
    value = instance.BinRepQualifier
    public string BinRepQualifier {get;}
    public: __property string* get_BinRepQualifier();
    public:
    property String^ BinRepQualifier {
       String^ get();
    }

    Property Value

    String value.
    See Also