12 references to s_fontHeightProperty
System.Windows.Forms (12)
System\Windows\Forms\Control.cs (12)
2113if (Properties.ContainsKey(s_fontHeightProperty)) 2115Properties.AddValue(s_fontHeightProperty, (value is null) ? -1 : value.Height); 2228if (Properties.TryGetValue(s_fontHeightProperty, out int fontHeight) && fontHeight != -1) 2235return Properties.AddValue(s_fontHeightProperty, font.Height); 2250Properties.AddValue(s_fontHeightProperty, localFontHeight); 2255set => Properties.AddValue(s_fontHeightProperty, value); 3186if (Properties.ContainsKey(s_fontHeightProperty)) 3188Properties.AddValue(s_fontHeightProperty, (value is null) ? -1 : value.Height); 7269if (Properties.ContainsKey(s_fontHeightProperty)) 7271Properties.AddValue(s_fontHeightProperty, -1); 11539if (Properties.ContainsKey(s_fontHeightProperty)) 11541Properties.AddValue(s_fontHeightProperty, scaledFont.Height);