Click or drag to resize

DataServer.FieldStatus Method (Typed)

X#
Determine the status of a field in this data server after the last operation.

Namespace:  XSharp.VO.SDK
Assembly:  XSharp.VOSystemClasses (in XSharp.VOSystemClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD FieldStatus(
	nFieldPosition AS USUAL
) AS HyperLabel
Request Example View Source

Parameters

nFieldPosition
Type: Usual
The name, number, or symbol representing the desired field.

Return Value

Type: HyperLabel
A HyperLabel object if any error condition had occurred or if a validation has failed, NIL if everything is OK, if the validation passed, or if there has been no validation attempt.
Remarks
In particular, DataServer:FieldStatus() can be used to find out more about a validation failure. By accessing the properties of this hyperlabel, you can retrieve not only a description of the condition that was raised, but also context-sensitive help on it. For example:
X#
1oDataServer:FieldStatus(#LastName):Caption
2oDataServer:FieldStatus(#LastName):Description
3oDataServer:FieldStatus(#LastName):HelpContext
See Also