constants group FormComponentType in module com::sun::star::form::

(Global Index)

Syntax

constants group FormComponentType;

Description

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

Constants Summary

CONTROL This identifier is for controls which cannot be identified by a specific identifier.

COMMANDBUTTON specifies a control that is used when to begin, interrupt, or end a process.

RADIOBUTTON specifies a control that presents a set of two or more mutually exclusive choices to the user.

IMAGEBUTTON specifies a control that displays an image that responds to mouse clicks.

CHECKBOX specifies a control that is used to check or uncheck to turn an option on or off.

LISTBOX specifies a control that displays a list from which the user can select one or more items.

COMBOBOX specifies a control that is used when a list box combined with a static text control or an edit control is needed.

GROUPBOX specifies a control that displays a frame around a group of controls with or without a caption.

TEXTFIELD specifies a control that is a text component that allows for the editing of a single line of text.

FIXEDTEXT specifies a control to display a fixed text.

GRIDCONTROL is a table like control to display database data.

FILECONTROL specifies that UnoFileControl extends the UnoControlEdit with a file dialog.

HIDDENCONTROL specifies a control that should not be visible.

IMAGECONTROL specifies a control to display an image.

DATEFIELD specifies a control to display and edit a date value.

TIMEFIELD specifies a control to display and edit a time value.

NUMERICFIELD specifies a field to display and edit a numeric value.

CURRENCYFIELD specifies a field to display and edit a currency value.

PATTERNFIELD specifies a control to display and edit a string according to a pattern.

Field Details



CONTROL

Syntax

const short  CONTROL = 1;

Description

This identifier is for controls which cannot be identified by a specific identifier.


COMMANDBUTTON

Syntax

const short  COMMANDBUTTON = 2;

Description

specifies a control that is used when to begin, interrupt, or end a process.


RADIOBUTTON

Syntax

const short  RADIOBUTTON = 3;

Description

specifies a control that presents a set of two or more mutually exclusive choices to the user.


IMAGEBUTTON

Syntax

const short  IMAGEBUTTON = 4;

Description

specifies a control that displays an image that responds to mouse clicks.


CHECKBOX

Syntax

const short  CHECKBOX = 5;

Description

specifies a control that is used to check or uncheck to turn an option on or off.


LISTBOX

Syntax

const short  LISTBOX = 6;

Description

specifies a control that displays a list from which the user can select one or more items.


COMBOBOX

Syntax

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.


GROUPBOX

Syntax

const short  GROUPBOX = 8;

Description

specifies a control that displays a frame around a group of controls with or without a caption.


TEXTFIELD

Syntax

const short  TEXTFIELD = 9;

Description

specifies a control that is a text component that allows for the editing of a single line of text.


FIXEDTEXT

Syntax

const short  FIXEDTEXT = 10;

Description

specifies a control to display a fixed text.


GRIDCONTROL

Syntax

const short  GRIDCONTROL = 11;

Description

is a table like control to display database data.


FILECONTROL

Syntax

const short  FILECONTROL = 12;

Description

specifies that UnoFileControl extends the UnoControlEdit with a file dialog.


HIDDENCONTROL

Syntax

const short  HIDDENCONTROL = 13;

Description

specifies a control that should not be visible.


IMAGECONTROL

Syntax

const short  IMAGECONTROL = 14;

Description

specifies a control to display an image.


DATEFIELD

Syntax

const short  DATEFIELD = 15;

Description

specifies a control to display and edit a date value.


TIMEFIELD

Syntax

const short  TIMEFIELD = 16;

Description

specifies a control to display and edit a time value.


NUMERICFIELD

Syntax

const short  NUMERICFIELD = 17;

Description

specifies a field to display and edit a numeric value.


CURRENCYFIELD

Syntax

const short  CURRENCYFIELD = 18;

Description

specifies a field to display and edit a currency value.


PATTERNFIELD

Syntax

const short  PATTERNFIELD = 19;

Description

specifies a control to display and edit a string according to a pattern.

Top of Page