InfoConnect for Unisys
IsUserField Property (ScreenCharacter)
Example 


Gets a value indicating whether the data cell marks the beginning of a user field. Note: IScreenDataConstants.FIELD_TYPE_USER
Syntax
'Declaration
 
Public ReadOnly Property IsUserField As Boolean
'Usage
 
Dim instance As ScreenCharacter
Dim value As Boolean
 
value = instance.IsUserField
public bool IsUserField {get;}
Example
private ScreenCharacter screen;
            
bool userField = screen.IsUserField;
See Also