53 references to TomBool
UIAutomationClientSideProviders (53)
MS\Internal\AutomationProxies\Tom.cs (16)
100TomBool InRange(ITextRange range); 102TomBool IsEqual(ITextRange range); 163new TomBool InRange(ITextRange range); 165new TomBool IsEqual(ITextRange range); 231TomBool AllCaps { get; set; } 246TomBool Emboss { get; set; } 252TomBool Hidden { get; set; } 255TomBool Engrave { get; set; } 258TomBool Italic { get; set; } 272TomBool Outline { get; set; } 279TomBool Protected { get; set; } 282TomBool Shadow { get; set; } 288TomBool SmallCaps { get; set; } 295TomBool StrikeThrough { get; set; } 298TomBool Subscript { get; set; } 301TomBool Superscript { get; set; }
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (37)
49return _range.IsEqual(otherRange._range)==TomBool.tomTrue; 671TomBool allCaps = font.AllCaps; 672TomBool smallCaps = font.SmallCaps; 674if (allCaps == TomBool.tomUndefined || smallCaps == TomBool.tomUndefined) 681if (font.AllCaps == TomBool.tomTrue) 685else if (font.SmallCaps == TomBool.tomTrue) 845TomBool hidden = font.Hidden; 846if (hidden == TomBool.tomUndefined) 852return hidden == TomBool.tomTrue; 858TomBool italic = font.Italic; 859if (italic == TomBool.tomUndefined) 865return italic == TomBool.tomTrue; 871TomBool outline = font.Outline; 872TomBool shadow = font.Shadow; 873TomBool emboss = font.Emboss; 874TomBool engrave = font.Engrave; 876if (outline == TomBool.tomUndefined || shadow == TomBool.tomUndefined || emboss == TomBool.tomUndefined || engrave == TomBool.tomUndefined) 883style |= (outline == TomBool.tomTrue) ? OutlineStyles.Outline : 0; 884style |= (shadow == TomBool.tomTrue) ? OutlineStyles.Shadow : 0; 885style |= (emboss == TomBool.tomTrue) ? OutlineStyles.Embossed : 0; 886style |= (engrave == TomBool.tomTrue) ? OutlineStyles.Engraved : 0; 901TomBool protect = font.Protected; 902if (protect == TomBool.tomUndefined) 908return protect == TomBool.tomTrue; 914TomBool strike = font.StrikeThrough; 915if (strike == TomBool.tomUndefined) 921return strike == TomBool.tomTrue ? TextDecorationLineStyle.Single : TextDecorationLineStyle.None; 927TomBool sub = font.Subscript; 928if (sub == TomBool.tomUndefined) 934return sub == TomBool.tomTrue; 940TomBool super = font.Superscript; 941if (super == TomBool.tomUndefined) 947return super == TomBool.tomTrue;