5 writes to fontName
System.Workflow.ComponentModel (5)
AuthoringOM\Design\Themes.cs (5)
2224
this.
fontName
= value;
3067
this.
fontName
= WorkflowTheme.GetDefaultFont().FontFamily.Name;
3072
this.
fontName
= WorkflowTheme.GetDefaultFont().FontFamily.Name;
3090
this.
fontName
= WorkflowTheme.GetDefaultFont().FontFamily.Name;
3095
this.
fontName
= WorkflowTheme.GetDefaultFont().FontFamily.Name;
16 references to fontName
System.Workflow.ComponentModel (16)
AuthoringOM\Design\Themes.cs (16)
2202
return this.
fontName
;
3065
Debug.Assert(this.
fontName
!= null && this.
fontName
.Length > 0);
3066
if (this.
fontName
== null || this.
fontName
.Length == 0)
3070
Debug.Assert(supportedFonts.Contains(this.
fontName
));
3071
if (!supportedFonts.Contains(this.
fontName
))
3074
this.font = new Font(this.
fontName
, FontSize);
3088
Debug.Assert(this.
fontName
!= null && this.
fontName
.Length > 0);
3089
if (this.
fontName
== null || this.
fontName
.Length == 0)
3093
Debug.Assert(supportedFonts.Contains(this.
fontName
));
3094
if (!supportedFonts.Contains(this.
fontName
))
3097
this.boldFont = new Font(this.
fontName
, FontSize, FontStyle.Bold);
3143
FontName = this.
fontName
;