ddHiCreateLibraryComboField
ddHiCreateLibraryComboField(?names_fieldName[?promptt_fieldPrompt] [?valuet_currentValue] [?defValuet_defaultValue] [?callbackg_callback] [?editableg_editable] [?enabledg_enabled] [?invisibleg_invisible] [?nextFieldg_nextField] [?toolTipt_toolTip] [?validationTypeg_validationType] [?highlightTypeg_highlightType] ) =>r_comboField
Description
Creates a customized Library combo field, which is an extension of a regular combo field, for selecting libraries.
Arguments
|
The handle to this field within a form. To reference it, use |
|
|
A string specifying the prompt for the field. To reference it, use |
|
|
The initial and current values of this field. To reference it, use |
|
|
The default value of the field. This value is equal to the initial entry in t_currentValue, if t_defaultValue is not specified. To reference the default value, use |
|
|
A string, symbol, or function object type callback that is executed if the value of the field changes. If a new value is typed in, the callback is called when the field has “lost focus”. This happens for example, when you move the pointer outside the form, or the tab to another field, or when you select any button in the form. |
|
|
Specifies whether the field is enabled. The default value is |
|
|
Specifies whether the field is invisible. The default value is |
|
|
A symbol or string indicating the next field to bring into focus when the Tab key is pressed. If you specify |
|
|
The tool tip that is displayed when the pointer hovers over the field. |
|
|
Specifies the criteria that determines if the input is valid or not. Acceptable values (symbol) are: |
|
|
Specifies when and how a widget is to be highlighted. Acceptable values (symbol) are: The first three values have the same definitions as given for the g_highlighType argument of hiHighlightField.
Setting the property to |
|
Values Returned
Examples
A Library combo field is created.
trCreateBlockLibName = ddHiCreateLibraryComboField( ?name 'libraryName ?prompt "Library" ?value "blockLibName" ?callback "trCreateBlockLibNameCB( trCreateBlockForm 'libraryName )"
)
Related Topics
Return to top