![]() |
PDFix SDK
6.5.0
|
Public Member Functions | |
| virtual int | GetText (wchar_t *buffer, int len)=0 |
| Gets the text of the text element. More... | |
| virtual bool | HasTextState ()=0 |
| virtual void | GetTextState (PdfTextState *text_state)=0 |
| Gets the text state of the text element. More... | |
| virtual int | GetNumTextLines ()=0 |
| Gets the number of lines of text in text element. More... | |
| virtual PdeTextLine * | GetTextLine (int index)=0 |
| Gets the text line element from the text element. More... | |
| virtual int | GetNumWords ()=0 |
| Gets the number of words of text in text element. More... | |
| virtual PdeWord * | GetWord (int index)=0 |
| Gets the word from the text element. More... | |
| virtual double | GetLineSpacing ()=0 |
| Gets the text element line spacing. More... | |
| virtual double | GetIndent ()=0 |
| Gets the text element indent. More... | |
| virtual PdfTextStyle | GetTextStyle ()=0 |
| Gets the text element type. More... | |
| virtual PdfTextFlags | GetTextFlags ()=0 |
| Gets the text element flags. More... | |
| virtual int | GetLabelLevel ()=0 |
| Gets the text element label level. More... | |
| virtual bool | SetLabelLevel (int level)=0 |
| Sets the text element label level. More... | |
Public Member Functions inherited from PdeElement | |
| virtual PdfElementType | GetType ()=0 |
| Gets the type of an element. More... | |
| virtual void | GetBBox (PdfRect *bbox)=0 |
| virtual bool | SetBBox (const PdfRect *bbox)=0 |
| virtual int | GetId ()=0 |
| Gets the id of an element. The id is unique number on a page. More... | |
| virtual void | GetGraphicState (PdfGraphicState *g_state)=0 |
| Gets the graphics state information for an element. More... | |
| virtual int | GetNumChildren ()=0 |
| Gets the number of child elements in an element object. More... | |
| virtual PdeElement * | GetChild (int index)=0 |
| Gets the requested child element from an element. More... | |
| virtual PdfAlignment | GetAlignment ()=0 |
| Gets the element alignment within the content column. More... | |
| virtual double | GetAngle ()=0 |
| Gets the element angle. More... | |
| virtual void | SetRender (bool render)=0 |
| Sets render mode of the element. This mode is used, when element is saved. More... | |
| virtual void | SetData (void *data)=0 |
| Sets user-supplied data to pass to the element. More... | |
| virtual void * | GetData ()=0 |
| Gets user-supplied data to pass to the element. More... | |
| virtual bool | SetAlt (const wchar_t *alt)=0 |
| Sets the alternate description of the element. More... | |
| virtual bool | SetActualText (const wchar_t *text)=0 |
| Sets the actual text of the element. More... | |
| virtual int | GetFlags ()=0 |
| Get the element state flags. More... | |
| virtual bool | SetFlags (int flags)=0 |
| Set the element state flags. More... | |
| virtual int | GetNumPageObjects ()=0 |
| Get the the number pf page object in the element. More... | |
| virtual PdsPageObject * | GetPageObject (int index)=0 |
| Get the the page object of the element by index. More... | |
| virtual PdePageMap * | GetPageMap ()=0 |
| Get the the page map object containing this element. More... | |
PdeText class.
A PdeText object represents a group of text line objects which forms a paragraph in a PDF file.
|
pure virtual |
Gets the text element indent.
|
pure virtual |
Gets the text element label level.
|
pure virtual |
Gets the text element line spacing.
|
pure virtual |
Gets the number of lines of text in text element.
|
pure virtual |
|
pure virtual |
Gets the text of the text element.
| buffer | (filled by method) If the buffer is null function returns required length of string |
| len | Length of a buffer to be filled in. |
|
pure virtual |
Gets the text element flags.
|
pure virtual |
Gets the text line element from the text element.
| index | The index of line to get. |
|
pure virtual |
Gets the text state of the text element.
| text_state | (filled by method) A pointer to a PdfTextState structure specifying the text state of a first text character. |
|
pure virtual |
Gets the text element type.
|
pure virtual |
Gets the word from the text element.
| index | The index of word to get. |
|
pure virtual |
Checks whether the text state can be obtained. It means that an each text line of the text element has the same text state.
|
pure virtual |
Sets the text element label level.
| level | Element label level zero based. To remove label flag, set label level to -1. |