LibreOffice
LibreOffice 24.2 SDK API Reference
|
gives access to the text of a component and makes it possible to register event listeners. More...
import"XTextComponent.idl";
Public Member Functions | |
void | addTextListener ([in] com::sun::star::awt::XTextListener l) |
registers a text event listener. More... | |
void | removeTextListener ([in] com::sun::star::awt::XTextListener l) |
unregisters a text event listener. More... | |
void | setText ([in] string aText) |
sets the text of the component. More... | |
void | insertText ([in] com::sun::star::awt::Selection Sel, [in] string Text) |
inserts text at the specified position. More... | |
string | getText () |
returns the text of the component. More... | |
string | getSelectedText () |
returns the currently selected text. More... | |
void | setSelection ([in] com::sun::star::awt::Selection aSelection) |
sets the user selection. More... | |
com::sun::star::awt::Selection | getSelection () |
returns the current user selection. More... | |
boolean | isEditable () |
returns if the text is editable by the user. More... | |
void | setEditable ([in] boolean bEditable) |
makes the text editable for the user or read-only. More... | |
void | setMaxTextLen ([in] short nLen) |
sets the maximum text length. More... | |
short | getMaxTextLen () |
returns the currently set maximum text length. More... | |
Public Member Functions inherited from XInterface | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. More... | |
void | acquire () |
increases the reference counter by one. More... | |
void | release () |
decreases the reference counter by one. More... | |
gives access to the text of a component and makes it possible to register event listeners.
void addTextListener | ( | [in] com::sun::star::awt::XTextListener | l | ) |
registers a text event listener.
short getMaxTextLen | ( | ) |
returns the currently set maximum text length.
string getSelectedText | ( | ) |
returns the currently selected text.
com::sun::star::awt::Selection getSelection | ( | ) |
returns the current user selection.
string getText | ( | ) |
returns the text of the component.
void insertText | ( | [in] com::sun::star::awt::Selection | Sel, |
[in] string | Text | ||
) |
inserts text at the specified position.
boolean isEditable | ( | ) |
returns if the text is editable by the user.
void removeTextListener | ( | [in] com::sun::star::awt::XTextListener | l | ) |
unregisters a text event listener.
void setEditable | ( | [in] boolean | bEditable | ) |
makes the text editable for the user or read-only.
void setMaxTextLen | ( | [in] short | nLen | ) |
sets the maximum text length.
void setSelection | ( | [in] com::sun::star::awt::Selection | aSelection | ) |
sets the user selection.
void setText | ( | [in] string | aText | ) |
sets the text of the component.