Event.Form.FunctionalIdentifier
Event.Form.FunctionalIdentifier returns a string of the form's functional ID. Returns the form name with the prefix of 'form_' before the form name.
Applies To
- Event.Form
- Event.Form.MainGrid
- Event.Form.Parent
- Event.Form.Parent.MainGrid
- Event.Form.Parent.Controls(FID)
- Event.Form.Parent.Grids(FID)
- Event.Form.Parent.Inputs(FID)
- Event.Form.Controls(FID)
- Event.Form.Grids(FID)
- Event.Form.Inputs(FID)
Properties and Methods
None
Available
The .FunctionalIdentifier property is available in:
- 17.00.023
- 17.01.006
- All newer builds
Note: The .FunctionalIdentifier property and all sub-classes, properties, and methods are only available in Form Layout scripts.
Type
String
Syntax
Event.Form.FunctionalIdentifier;
Parameters
None
Example
Event.Form.MessageBox(`${Event.Form.FunctionalIdentifier}`);
/* Expected Prompt response:
If added to a button's click event on the Edit Contact form, you would get:
form_contadd
*/