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