FieldSpec.Status Property | |
After a validation request (see FieldSpec:PerformValidations() for details), this contains a HyperLabel object that describes the results of the validation or NULL_OBJECT if the validation passed.
Namespace:
VO
Assembly:
VOSystemClasses (in VOSystemClasses.dll) Version: 2.19
Syntax VIRTUAL PROPERTY Status AS USUAL GET SET
public virtual Usual Status { get; set; }
Request Example
View SourceProperty Value
Type:
UsualAfter a validation request (see FieldSpec:PerformValidations() for details), this contains a HyperLabel object that describes the results of the validation or NULL_OBJECT if the validation passed.
Examples
The following example performs a validation and assigns the resulting status to a status bar message variable:
1IF !oFS:PerformValidations(x)
2SELF:StatusBarMessage := oFS:Status
3ENDIF
See Also