53 references to TomBool
UIAutomationClientSideProviders (53)
MS\Internal\AutomationProxies\Tom.cs (16)
101TomBool InRange(ITextRange range); 103TomBool IsEqual(ITextRange range); 164new TomBool InRange(ITextRange range); 166new TomBool IsEqual(ITextRange range); 232TomBool AllCaps { get; set; } 247TomBool Emboss { get; set; } 253TomBool Hidden { get; set; } 256TomBool Engrave { get; set; } 259TomBool Italic { get; set; } 273TomBool Outline { get; set; } 280TomBool Protected { get; set; } 283TomBool Shadow { get; set; } 289TomBool SmallCaps { get; set; } 296TomBool StrikeThrough { get; set; } 299TomBool Subscript { get; set; } 302TomBool Superscript { get; set; }
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (37)
53return _range.IsEqual(otherRange._range)==TomBool.tomTrue; 678TomBool allCaps = font.AllCaps; 679TomBool smallCaps = font.SmallCaps; 681if (allCaps == TomBool.tomUndefined || smallCaps == TomBool.tomUndefined) 688if (font.AllCaps == TomBool.tomTrue) 692else if (font.SmallCaps == TomBool.tomTrue) 852TomBool hidden = font.Hidden; 853if (hidden == TomBool.tomUndefined) 859return hidden == TomBool.tomTrue; 865TomBool italic = font.Italic; 866if (italic == TomBool.tomUndefined) 872return italic == TomBool.tomTrue; 878TomBool outline = font.Outline; 879TomBool shadow = font.Shadow; 880TomBool emboss = font.Emboss; 881TomBool engrave = font.Engrave; 883if (outline == TomBool.tomUndefined || shadow == TomBool.tomUndefined || emboss == TomBool.tomUndefined || engrave == TomBool.tomUndefined) 890style |= (outline == TomBool.tomTrue) ? OutlineStyles.Outline : 0; 891style |= (shadow == TomBool.tomTrue) ? OutlineStyles.Shadow : 0; 892style |= (emboss == TomBool.tomTrue) ? OutlineStyles.Embossed : 0; 893style |= (engrave == TomBool.tomTrue) ? OutlineStyles.Engraved : 0; 908TomBool protect = font.Protected; 909if (protect == TomBool.tomUndefined) 915return protect == TomBool.tomTrue; 921TomBool strike = font.StrikeThrough; 922if (strike == TomBool.tomUndefined) 928return strike == TomBool.tomTrue ? TextDecorationLineStyle.Single : TextDecorationLineStyle.None; 934TomBool sub = font.Subscript; 935if (sub == TomBool.tomUndefined) 941return sub == TomBool.tomTrue; 947TomBool super = font.Superscript; 948if (super == TomBool.tomUndefined) 954return super == TomBool.tomTrue;