Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: awt ::

interface XFixedText

Base Interface
com::sun::star::uno::XInterface

Description
makes it possible to access the text and formatting of a test field.


Known Services which Export this Interface

com::sun::star::awt::UnoControlFixedText specifies a control to display a fixed text.

Methods' Summary

setText sets the text to display in the text field.
getText
setAlignment sets the TextAlign for this field.
getAlignment

Methods' Details

setText
 
[ oneway ] void
setText(
[ in ] string Text );

Description
sets the text to display in the text field.
getText
 
string
getText();
Returns
the text which is currently displayed in the text field.
setAlignment
 
[ oneway ] void
setAlignment(
[ in ] short nAlign );

Description
sets the TextAlign for this field.
getAlignment
 
short
getAlignment();
Returns
the currently set TextAlign for this field.

Top of Page