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)
50return _range.IsEqual(otherRange._range)==TomBool.tomTrue; 672TomBool allCaps = font.AllCaps; 673TomBool smallCaps = font.SmallCaps; 675if (allCaps == TomBool.tomUndefined || smallCaps == TomBool.tomUndefined) 682if (font.AllCaps == TomBool.tomTrue) 686else if (font.SmallCaps == TomBool.tomTrue) 846TomBool hidden = font.Hidden; 847if (hidden == TomBool.tomUndefined) 853return hidden == TomBool.tomTrue; 859TomBool italic = font.Italic; 860if (italic == TomBool.tomUndefined) 866return italic == TomBool.tomTrue; 872TomBool outline = font.Outline; 873TomBool shadow = font.Shadow; 874TomBool emboss = font.Emboss; 875TomBool engrave = font.Engrave; 877if (outline == TomBool.tomUndefined || shadow == TomBool.tomUndefined || emboss == TomBool.tomUndefined || engrave == TomBool.tomUndefined) 884style |= (outline == TomBool.tomTrue) ? OutlineStyles.Outline : 0; 885style |= (shadow == TomBool.tomTrue) ? OutlineStyles.Shadow : 0; 886style |= (emboss == TomBool.tomTrue) ? OutlineStyles.Embossed : 0; 887style |= (engrave == TomBool.tomTrue) ? OutlineStyles.Engraved : 0; 902TomBool protect = font.Protected; 903if (protect == TomBool.tomUndefined) 909return protect == TomBool.tomTrue; 915TomBool strike = font.StrikeThrough; 916if (strike == TomBool.tomUndefined) 922return strike == TomBool.tomTrue ? TextDecorationLineStyle.Single : TextDecorationLineStyle.None; 928TomBool sub = font.Subscript; 929if (sub == TomBool.tomUndefined) 935return sub == TomBool.tomTrue; 941TomBool super = font.Superscript; 942if (super == TomBool.tomUndefined) 948return super == TomBool.tomTrue;