Reflection
IsOverline Property (ScreenCharacter)
Example 


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