12 references to s_fontHeightProperty
System.Windows.Forms (12)
System\Windows\Forms\Control.cs (12)
1845if (Properties.ContainsKey(s_fontHeightProperty)) 1847Properties.AddValue(s_fontHeightProperty, (value is null) ? -1 : value.Height); 1960if (Properties.TryGetValue(s_fontHeightProperty, out int fontHeight) && fontHeight != -1) 1967return Properties.AddValue(s_fontHeightProperty, font.Height); 1982Properties.AddValue(s_fontHeightProperty, localFontHeight); 1987set => Properties.AddValue(s_fontHeightProperty, value); 2918if (Properties.ContainsKey(s_fontHeightProperty)) 2920Properties.AddValue(s_fontHeightProperty, (value is null) ? -1 : value.Height); 6804if (Properties.ContainsKey(s_fontHeightProperty)) 6806Properties.AddValue(s_fontHeightProperty, -1); 10700if (Properties.ContainsKey(s_fontHeightProperty)) 10702Properties.AddValue(s_fontHeightProperty, scaledFont.Height);