Field Property
Links controls (RICHEDITBOX, TEXTBOX, EDITBOX, CHECKBOX and DATEPICKER) to a table field.
Syntax:
Field <xcValue>
Fields Property
A character array (one element per column) specifying fields for a Browse control
Syntax:
Fields <acValues>
Sample:
DEFINE BROWSE Browse_1
COL 10
ROW 10
WIDTH 610
HEIGHT 390
HEADERS { 'Code' , 'First Name' , 'Last Name' }
WIDTHS { 150 , 150 , 150 }
WORKAREA Test
FIELDS { 'Test->Code' , 'Test->First' , 'Test->Last' }
VALUE 1
END BROWSE
File Property
Specifies the file name (as a character string) for a Player or AnimateBox control
Syntax:
File <cValue>
Flat Property
Set 'Flat' Style For GUI Objects
Syntax:
Flat <lValue>
Specified whether ‘flat’ style will be used to show a StatusBar item, the buttons in a Tab control (‘buttons’ style) a ToolBar or a Button conttrol.
FocusedControl Property
Retrieves the focused control name of a Window
Syntax:
<WindowName>.FocusedControl --> cFocusedControlName
FontName Property
Set \/ Gets gui object's font name
Syntax:
FontName <anValue> (Control Definition)
<ParentWindowName>.<ControlName>.FontName := cFontName
<ParentWindowName>.<ControlName>.FontName --> cFontName
FontSize Property
Set \/ Gets gui object's font size
Syntax:
FontSize <nValue> (Control Definition)
<ParentWindowName>.<ControlName>.FontSize := nFontSize
<ParentWindowName>.<ControlName>.FontSize --> nFontSize
FontBold Property
Set \/ Gets gui object's font bold flag
Syntax:
FontBold <lValue> (Control Definition)
<ParentWindowName>.<ControlName>.FontBold := lFontBold
<ParentWindowName>.<ControlName>.FontBold --> lFontBold
FontColor Property
Specifies the text color for a GUI object
Syntax:
FontColor <anValue> (Control Definition)
<WindowName>.<ControlName>.FontColor := aFontColor
<WindowName>.<ControlName>.FontColor --> aFontColor
This should be specified as a three element numeric array containing red, green and blue components.
FontItalic Property
Set \/ Gets gui object's font italic flag
Syntax:
FontItalic <lValue> (Control Definition)
<ParentWindowName>.<ControlName>.FontItalic := lFontItalic
<ParentWindowName>.<ControlName>.FontItalic --> lFontItalic
FontUnderLine Property
Set \/ Gets gui object's font underline flag
Syntax:
FontUnderLine <lValue> (Control Definition)
<ParentWindowName>.<ControlName>.FontUnderline := lFontUnderline
<ParentWindowName>.<ControlName>.FontUnderline --> lFontUnderline
FontStrikeOut Property
Set \/ Gets gui object's font strikeout flag
Syntax:
FontStrikeout <lValue> (Control Definition)
<ParentWindowName>.<ControlName>.FontStrikeOut := nFontStrikeOut
<ParentWindowName>.<ControlName>.FontStrikeOut --> nFontStrikeOut
Format Property
Specifies the edit format string for a TextBox|TimePicker control
Syntax:
Format <cFormat>
TextBox control
Format String (Allowed in Numeric Textbox Only):
C : Displays CR after positive numbers
X : Displays DB after negative numbers
( : Encloses negative numbers in parentheses
E : Displays numbers in British format
TimePicker control
_TIMELONG24H : 24 Hour Long Format
_TIMESHORT24H : 24 Hour Short Format
_TIMELONG12H : 12 Hour Long Format (am|pm)
_TIMESHORT12H : 12 Hour Short Format (am|pm)