12 references to s_fontHeightProperty
System.Windows.Forms (12)
System\Windows\Forms\Control.cs (12)
1846if (Properties.ContainsKey(s_fontHeightProperty)) 1848Properties.AddValue(s_fontHeightProperty, (value is null) ? -1 : value.Height); 1961if (Properties.TryGetValue(s_fontHeightProperty, out int fontHeight) && fontHeight != -1) 1968return Properties.AddValue(s_fontHeightProperty, font.Height); 1983Properties.AddValue(s_fontHeightProperty, localFontHeight); 1988set => Properties.AddValue(s_fontHeightProperty, value); 2919if (Properties.ContainsKey(s_fontHeightProperty)) 2921Properties.AddValue(s_fontHeightProperty, (value is null) ? -1 : value.Height); 6765if (Properties.ContainsKey(s_fontHeightProperty)) 6767Properties.AddValue(s_fontHeightProperty, -1); 10669if (Properties.ContainsKey(s_fontHeightProperty)) 10671Properties.AddValue(s_fontHeightProperty, scaledFont.Height);