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