Reflection
IsAutoEnterField Property (ScreenCharacter)
Example 


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