FieldSpec.Status Property (Typed) | |
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:
XSharp.VO.SDK
Assembly:
XSharp.VOSystemClasses (in XSharp.VOSystemClasses.dll) Version: 2.19
Syntax VIRTUAL PROPERTY Status AS HyperLabel GET SET
public virtual HyperLabel Status { get; set; }
Request Example
View SourceProperty Value
Type:
HyperLabelAfter 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