Reflection
IsStrikeThrough Property (ScreenCharacter)
Example 


Gets a value indicating whether the data cell contains strikethrough text. Note: IScreenDataConstants.ATTR_STRIKETHROUGH
Syntax
'Declaration
 
Public ReadOnly Property IsStrikeThrough As Boolean
'Usage
 
Dim instance As ScreenCharacter
Dim value As Boolean
 
value = instance.IsStrikeThrough
public bool IsStrikeThrough {get;}
Example
private ScreenCharacter screen;
            
bool strikeThrough = screen.IsStrikeThrough;
See Also