53 references to TomBool
UIAutomationClientsideProviders (53)
MS\Internal\AutomationProxies\Tom.cs (16)
110TomBool InRange(ITextRange range); 112TomBool IsEqual(ITextRange range); 173new TomBool InRange(ITextRange range); 175new TomBool IsEqual(ITextRange range); 241TomBool AllCaps { get; set; } 256TomBool Emboss { get; set; } 262TomBool Hidden { get; set; } 265TomBool Engrave { get; set; } 268TomBool Italic { get; set; } 282TomBool Outline { get; set; } 289TomBool Protected { get; set; } 292TomBool Shadow { get; set; } 298TomBool SmallCaps { get; set; } 305TomBool StrikeThrough { get; set; } 308TomBool Subscript { get; set; } 311TomBool Superscript { get; set; }
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (37)
61return _range.IsEqual(otherRange._range)==TomBool.tomTrue; 698TomBool allCaps = font.AllCaps; 699TomBool smallCaps = font.SmallCaps; 701if (allCaps == TomBool.tomUndefined || smallCaps == TomBool.tomUndefined) 708if (font.AllCaps == TomBool.tomTrue) 712else if (font.SmallCaps == TomBool.tomTrue) 872TomBool hidden = font.Hidden; 873if (hidden == TomBool.tomUndefined) 879return hidden == TomBool.tomTrue; 885TomBool italic = font.Italic; 886if (italic == TomBool.tomUndefined) 892return italic == TomBool.tomTrue; 898TomBool outline = font.Outline; 899TomBool shadow = font.Shadow; 900TomBool emboss = font.Emboss; 901TomBool engrave = font.Engrave; 903if (outline == TomBool.tomUndefined || shadow == TomBool.tomUndefined || emboss == TomBool.tomUndefined || engrave == TomBool.tomUndefined) 910style |= (outline == TomBool.tomTrue) ? OutlineStyles.Outline : 0; 911style |= (shadow == TomBool.tomTrue) ? OutlineStyles.Shadow : 0; 912style |= (emboss == TomBool.tomTrue) ? OutlineStyles.Embossed : 0; 913style |= (engrave == TomBool.tomTrue) ? OutlineStyles.Engraved : 0; 928TomBool protect = font.Protected; 929if (protect == TomBool.tomUndefined) 935return protect == TomBool.tomTrue; 941TomBool strike = font.StrikeThrough; 942if (strike == TomBool.tomUndefined) 948return strike == TomBool.tomTrue ? TextDecorationLineStyle.Single : TextDecorationLineStyle.None; 954TomBool sub = font.Subscript; 955if (sub == TomBool.tomUndefined) 961return sub == TomBool.tomTrue; 967TomBool super = font.Superscript; 968if (super == TomBool.tomUndefined) 974return super == TomBool.tomTrue;