12 references to s_fontHeightProperty
System.Windows.Forms (12)
System\Windows\Forms\Control.cs (12)
1845
if (Properties.ContainsKey(
s_fontHeightProperty
))
1847
Properties.AddValue(
s_fontHeightProperty
, (value is null) ? -1 : value.Height);
1960
if (Properties.TryGetValue(
s_fontHeightProperty
, out int fontHeight) && fontHeight != -1)
1967
return Properties.AddValue(
s_fontHeightProperty
, font.Height);
1982
Properties.AddValue(
s_fontHeightProperty
, localFontHeight);
1987
set => Properties.AddValue(
s_fontHeightProperty
, value);
2918
if (Properties.ContainsKey(
s_fontHeightProperty
))
2920
Properties.AddValue(
s_fontHeightProperty
, (value is null) ? -1 : value.Height);
6804
if (Properties.ContainsKey(
s_fontHeightProperty
))
6806
Properties.AddValue(
s_fontHeightProperty
, -1);
10700
if (Properties.ContainsKey(
s_fontHeightProperty
))
10702
Properties.AddValue(
s_fontHeightProperty
, scaledFont.Height);