12 references to s_fontHeightProperty
System.Windows.Forms (12)
System\Windows\Forms\Control.cs (12)
1847if (Properties.ContainsKey(s_fontHeightProperty)) 1849Properties.AddValue(s_fontHeightProperty, (value is null) ? -1 : value.Height); 1962if (Properties.TryGetValue(s_fontHeightProperty, out int fontHeight) && fontHeight != -1) 1969return Properties.AddValue(s_fontHeightProperty, font.Height); 1984Properties.AddValue(s_fontHeightProperty, localFontHeight); 1989set => Properties.AddValue(s_fontHeightProperty, value); 2920if (Properties.ContainsKey(s_fontHeightProperty)) 2922Properties.AddValue(s_fontHeightProperty, (value is null) ? -1 : value.Height); 6806if (Properties.ContainsKey(s_fontHeightProperty)) 6808Properties.AddValue(s_fontHeightProperty, -1); 10702if (Properties.ContainsKey(s_fontHeightProperty)) 10704Properties.AddValue(s_fontHeightProperty, scaledFont.Height);