Description
Sets or returns whether strikethrough formatting will be applied to the font.C#
<p> public boolean Strikethrough{ get ; set ; }</p> |
vb.net
<p> Public Property Strikethrough() As Boolean </p> |
Examples
C#
//--- Get Strikethrough bool isStrikethrough = fnt.Strikethrough; //--- Set Strikethrough fnt.Strikethrough = true ; |
vb.net
'--- Get Strikethrough Dim isStrikethrough As Boolean = fnt.Strikethrough '--- Set Strikethrough fnt.Strikethrough = True |