14 references to _fontCache
System.Windows.Forms.DataVisualization (14)
Common\General\Chart.cs (14)
4180
if (!this.
_fontCache
.ContainsKey(key))
4182
this.
_fontCache
.Add(key, new Font(familyName, size));
4184
return this.
_fontCache
[key];
4197
if (!this.
_fontCache
.ContainsKey(key))
4199
this.
_fontCache
.Add(key, new Font(familyName, size, style));
4201
return this.
_fontCache
[key];
4214
if (!this.
_fontCache
.ContainsKey(key))
4216
this.
_fontCache
.Add(key, new Font(family, size, style));
4218
return this.
_fontCache
[key];
4232
if (!this.
_fontCache
.ContainsKey(key))
4234
this.
_fontCache
.Add(key, new Font(family, size, style, unit));
4236
return this.
_fontCache
[key];
4248
foreach (Font font in
_fontCache
.Values)
4252
_fontCache
.Clear();