Reflection
IsUnderline Property (ScreenCharacter)
Example 


Gets a value indicating whether the data cell contains underlined text. Note: IScreenDataconstants.ATTR_UNDERLINE
Syntax
'Declaration
 
Public ReadOnly Property IsUnderline As Boolean
'Usage
 
Dim instance As ScreenCharacter
Dim value As Boolean
 
value = instance.IsUnderline
public bool IsUnderline {get;}
Example
private ScreenCharacter screen;
            
bool underline = screen.IsUnderline;
See Also