Top   Module   Use   Manual   Index 

com :: sun :: star :: form ::

constants group FormComponentType


Description
These constants specify the class types used to identify a component.


Constants

const short CONTROL = = 1;
Description
This identifier is for controls which cannot be identified by a specific identifier.
const short COMMANDBUTTON = = 2;
Description
specifies a control that is used when to begin, interrupt, or end a process.
const short RADIOBUTTON = = 3;
Description
specifies a control that presents a set of two or more mutually exclusive choices to the user.
const short IMAGEBUTTON = = 4;
Description
specifies a control that displays an image that responds to mouse clicks.
const short CHECKBOX = = 5;
Description
specifies a control that is used to check or uncheck to turn an option on or off.
const short LISTBOX = = 6;
Description
specifies a control that displays a list from which the user can select one or more items.
const short COMBOBOX = = 7;
Description
specifies a control that is used when a list box combined with a static text control or an edit control is needed.
const short GROUPBOX = = 8;
Description
specifies a control that displays a frame around a group of controls with or without a caption.
const short TEXTFIELD = = 9;
Description
specifies a control that is a text component that allows for the editing of a single line of text.
const short FIXEDTEXT = = 10;
Description
specifies a control to display a fixed text.
const short GRIDCONTROL = = 11;
Description
is a table like control to display database data.
const short FILECONTROL = = 12;
Description
specifies that UnoFileControl extends the UnoControlEdit with a file dialog.
const short HIDDENCONTROL = = 13;
Description
specifies a control that should not be visible.
const short IMAGECONTROL = = 14;
Description
specifies a control to display an image.
const short DATEFIELD = = 15;
Description
specifies a control to display and edit a date value.
const short TIMEFIELD = = 16;
Description
specifies a control to display and edit a time value.
const short NUMERICFIELD = = 17;
Description
specifies a field to display and edit a numeric value.
const short CURRENCYFIELD = = 18;
Description
specifies a field to display and edit a currency value.
const short PATTERNFIELD = = 19;
Description
specifies a control to display and edit a string according to a pattern.
Top of Page