12 references to s_fontHeightProperty
System.Windows.Forms (12)
System\Windows\Forms\Control.cs (12)
1941if (Properties.ContainsKey(s_fontHeightProperty)) 1943Properties.AddValue(s_fontHeightProperty, (value is null) ? -1 : value.Height); 2056if (Properties.TryGetValue(s_fontHeightProperty, out int fontHeight) && fontHeight != -1) 2063return Properties.AddValue(s_fontHeightProperty, font.Height); 2078Properties.AddValue(s_fontHeightProperty, localFontHeight); 2083set => Properties.AddValue(s_fontHeightProperty, value); 3014if (Properties.ContainsKey(s_fontHeightProperty)) 3016Properties.AddValue(s_fontHeightProperty, (value is null) ? -1 : value.Height); 6900if (Properties.ContainsKey(s_fontHeightProperty)) 6902Properties.AddValue(s_fontHeightProperty, -1); 10818if (Properties.ContainsKey(s_fontHeightProperty)) 10820Properties.AddValue(s_fontHeightProperty, scaledFont.Height);