hiCreateFormLabel
hiCreateFormLabel(
?name s_name
[ ?labelText t_labelText ]
[ ?labelIcon g_labelIcon ]
[ ?help g_fieldHelp ]
[ ?font t_font ]
[ ?justification s_justification ]
[ ?enabled g_enabled ]
[ ?invisible g_invisible ]
)
=> r_fieldHandle
Description
This function is an alias for hiCreateLabel. Use hiCreateLabel instead of this function.
Arguments
|
s_name
|
Handle to the form label within the form.
|
|
?labelText l_labelText
|
|
|
Text for the label.
|
|
?labelIcon g_labelIcon
|
|
|
Icon which appears as the label.
|
|
?help g_fieldHelp
|
A string or symbol used to reference help. If this argument is not specified, s_fieldName is used. This argument is currently not used.
|
|
?font t_font
|
This argument is ignored.
|
|
?justification s_justification
|
|
|
Must be one of the following symbols: ’left, ’center, or ’right. ’left is the default.
|
|
?enabled g_enabled
|
|
|
Specifies whether the fields in the layout are enabled. The default value is t.
|
|
?invisible g_invisible
|
|
|
Specifies whether the layout and the fields within are invisible. The default value is nil.
|
Values Returned
|
r_fieldHandle
|
Handle to the label.
|
Related Topics
Form and Field Functions
hiCreateLabel
Return to top