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