17 references to Font
UIAutomationClientsideProviders (17)
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (17)
582if (attribute == TextPattern.AnimationStyleAttribute) { rval = GetAnimationStyle(range.Font); } 583else if (attribute == TextPattern.BackgroundColorAttribute) { rval = GetBackgroundColor(range.Font); } 585else if (attribute == TextPattern.CapStyleAttribute) { rval = GetCapStyle(range.Font); } 589else if (attribute == TextPattern.FontSizeAttribute) { rval = GetFontSize(range.Font); } 590else if (attribute == TextPattern.FontWeightAttribute) { rval = GetFontWeight(range.Font); } 591else if (attribute == TextPattern.ForegroundColorAttribute) { rval = GetForegroundColor(range.Font); } 597else if (attribute == TextPattern.IsHiddenAttribute) { rval = GetHidden(range.Font); } 598else if (attribute == TextPattern.IsItalicAttribute) { rval = GetItalic(range.Font); } 599else if (attribute == TextPattern.IsReadOnlyAttribute) { rval = GetReadOnly(range.Font); } 600else if (attribute == TextPattern.IsSubscriptAttribute) { rval = GetSubscript(range.Font); } 601else if (attribute == TextPattern.IsSuperscriptAttribute) { rval = GetSuperscript(range.Font); } 611else if (attribute == TextPattern.OutlineStylesAttribute) { rval = GetOutlineStyles(range.Font); } 619else if (attribute == TextPattern.StrikethroughStyleAttribute) { rval = GetStrikethroughStyle(range.Font); } 623else if (attribute == TextPattern.UnderlineStyleAttribute) { rval = GetUnderlineStyle(range.Font); } 736name = range.Font.Name; 746name = unitRange.Font.Name; 751if (string.Compare(name, unitRange.Font.Name, StringComparison.Ordinal) != 0)