7 references to Strikeout
System.Drawing.Common (3)
System\Drawing\Font.cs (1)
61
public bool Strikeout => (Style & FontStyle.
Strikeout
) != 0;
System\Drawing\FontConverter.cs (2)
242
FontStyle validBits = FontStyle.Regular | FontStyle.Bold | FontStyle.Italic | FontStyle.Underline | FontStyle.
Strikeout
;
355
style |= FontStyle.
Strikeout
;
System.Windows.Forms (4)
System\Windows\Forms\ActiveX\AxHost.cs (1)
3782
style |= FontStyle.
Strikeout
;
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
2185
style |= FontStyle.
Strikeout
;
System\Windows\Forms\Rendering\FontCache.Data.cs (2)
97
lfStrikeOut = (font.Style & FontStyle.
Strikeout
) == FontStyle.
Strikeout
? True : False,