2 writes to lfStrikeOut
System.Windows.Forms (1)
System\Windows\Forms\Rendering\FontCache.Data.cs (1)
97lfStrikeOut = (font.Style & FontStyle.Strikeout) == FontStyle.Strikeout ? True : False,
System.Windows.Forms.Primitives.Tests (1)
System\Windows\Forms\Automation\UiaTextRangeTests.cs (1)
1252LOGFONTW logfont = new() { lfStrikeOut = ifStrikeOut };
2 references to lfStrikeOut
System.Windows.Forms (1)
System\Windows\Forms\ComponentModel\COM2Interop\COM2FontConverter.cs (1)
154bool isStrike = logfont.lfStrikeOut != 0;
System.Windows.Forms.Primitives (1)
System\Windows\Forms\Automation\UiaTextRange.cs (1)
908=> (int)(logfont.lfStrikeOut != 0 ? TextDecorationLineStyle.Single : TextDecorationLineStyle.None);