vfoGRSetCreateFormFieldProp
vfoGRSetCreateFormFieldProp(
t_promptName
t_propertyName
t_propertyValue
)
Description
Sets the properties of the fields or components displayed on the Create Guard Ring form.
Arguments
|
t_promptName
|
The field name as it appears on the Create Guard Ring form.
|
|
t_propertyName
|
The property of the specified field. The acceptable values for this argument can be one of the following: invisible, enabled, editable, defValue, and value.
|
|
t_propertyValue
|
|
|
The value of each specified property. Use the following table to identify the types of value that can be specified:
|
|
|
propertyName
|
propertyValue
|
|
|
invisible
|
t or nil
|
|
|
enabled
|
t or nil
|
|
|
editable
|
t or nil
|
|
|
defValue
|
Default value depending on user definition, such as float, Boolean, integer, or string
|
|
|
value
|
Current value depending on user definition, such as float, Boolean, integer, or string
|
Value Returned
None
Example
vfoGRSetCreateFormFieldProp("Contact Rows" "invisible" "nil")
Return to top