InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / ScreenCharacter Class / IsUserField Property
Example


In This Topic
    IsUserField Property (ScreenCharacter)
    In This Topic
    Gets a value that indicates 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