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