|
|
|
|
|
MandatoryInput (Property) In french: SaisieObligatoire
The MandatoryInput property is used to determine if a control is required and to enable or disable the required data input. IF m_bCriticalAccount THEN
EDT_Password.MandatoryInput = invalidInputBlocking
END
Syntax
Determining if the required data input is enabled or disabled on a control Hide the details
<Result> = <Control used>.MandatoryInput
<Result>: Required input behavior:
<Control used>: Control name Name of the control used. This control can be: - an Edit control,
- a Check Box control,
- a Radio Button control,
- a Combo Box control,
- a Rating control.
Enabling or disabling required input in a control Hide the details
<Control used>.MandatoryInput = <Required input>
<Control used>: Control name Name of the control used. This control can be: - an Edit control,
- a Check Box control,
- a Radio Button control,
- a Combo Box control,
- a Rating control.
<Required input>: Integer constant New required input verification mode:
Remarks Until version 2024, the MandatoryInput property could only be used to determine whether input was required (True) or optional (False). It is now possible to determine whether or not a control with required input prevents users from leaving.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|