ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFWord Class / Bytes Property




In This Topic
    Bytes Property
    In This Topic
    Gets a word's byte array and also converts ligatures to their constituent characters.
    Syntax
    'Declaration
     
    Public ReadOnly Property Bytes As Byte()
    'Usage
     
    Dim instance As ImGearPDFWord
    Dim value() As Byte
     
    value = instance.Bytes
    public byte[] Bytes {get;}
    public: __property byte[]* get_Bytes();
    public:
    property array<byte>^ Bytes {
       array<byte>^ get();
    }

    Property Value

    Byte array.
    Remarks
    The byte array to return includes any word break characters (such as space characters) that follow the word, but not any that precede the word. The characters that are treated as word breaks are defined in the EncInfo parameter of ImGearPDFWordFinder constructor.

    The result is provided in whatever encoding the PDF Word uses, for both Roman and non-Roman systems.

    See Also