ElementGetTextData Method |
Gets the text data.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntaxpublic byte[] GetTextData()
Public Function GetTextData As Byte()
public:
virtual array<unsigned char>^ GetTextData() sealed
Return Value
Type:
Byte a pointer to the internal text buffer for this text element.
RemarksGetTextData() returns the raw text data and not a Unicode string.
In PDF text can be encoded using various encoding schemes so it is necessary
to consider Font encoding while processing the content of this buffer.
Most of the time GetTextString() is what you are looking for instead.
See Also