Reflection
IsSignedNumericField Property (ScreenCharacter)
Example 


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