boolean isEditable()
returns if the text is editable by the user.
void setSelection([in] com::sun::star::awt::Selection aSelection)
sets the user selection.
com::sun::star::awt::Selection getSelection()
returns the current user selection.
void addTextListener([in] com::sun::star::awt::XTextListener l)
registers a text event listener.
short getMaxTextLen()
returns the currently set maximum text length.
void setText([in] string aText)
sets the text of the component.
void insertText([in] com::sun::star::awt::Selection Sel, [in] string Text)
inserts text at the specified position.
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.
string getText()
returns the text of the component.
void setMaxTextLen([in] short nLen)
sets the maximum text length.
string getSelectedText()
returns the currently selected text.
gives access to the text of a component and makes it possible to register event listeners.
Definition: XTextComponent.idl:37
makes it possible to receive text change events.
Definition: XTextListener.idl:34