12 references to s_fontHeightProperty
System.Windows.Forms (12)
System\Windows\Forms\Control.cs (12)
1934if (Properties.ContainsKey(s_fontHeightProperty)) 1936Properties.AddValue(s_fontHeightProperty, (value is null) ? -1 : value.Height); 2049if (Properties.TryGetValue(s_fontHeightProperty, out int fontHeight) && fontHeight != -1) 2056return Properties.AddValue(s_fontHeightProperty, font.Height); 2071Properties.AddValue(s_fontHeightProperty, localFontHeight); 2076set => Properties.AddValue(s_fontHeightProperty, value); 3007if (Properties.ContainsKey(s_fontHeightProperty)) 3009Properties.AddValue(s_fontHeightProperty, (value is null) ? -1 : value.Height); 6895if (Properties.ContainsKey(s_fontHeightProperty)) 6897Properties.AddValue(s_fontHeightProperty, -1); 10808if (Properties.ContainsKey(s_fontHeightProperty)) 10810Properties.AddValue(s_fontHeightProperty, scaledFont.Height);