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