53 references to TomBool
UIAutomationClientSideProviders (53)
MS\Internal\AutomationProxies\Tom.cs (16)
102
TomBool
InRange(ITextRange range);
104
TomBool
IsEqual(ITextRange range);
165
new
TomBool
InRange(ITextRange range);
167
new
TomBool
IsEqual(ITextRange range);
233
TomBool
AllCaps { get; set; }
248
TomBool
Emboss { get; set; }
254
TomBool
Hidden { get; set; }
257
TomBool
Engrave { get; set; }
260
TomBool
Italic { get; set; }
274
TomBool
Outline { get; set; }
281
TomBool
Protected { get; set; }
284
TomBool
Shadow { get; set; }
290
TomBool
SmallCaps { get; set; }
297
TomBool
StrikeThrough { get; set; }
300
TomBool
Subscript { get; set; }
303
TomBool
Superscript { get; set; }
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (37)
54
return _range.IsEqual(otherRange._range)==
TomBool
.tomTrue;
679
TomBool
allCaps = font.AllCaps;
680
TomBool
smallCaps = font.SmallCaps;
682
if (allCaps ==
TomBool
.tomUndefined || smallCaps ==
TomBool
.tomUndefined)
689
if (font.AllCaps ==
TomBool
.tomTrue)
693
else if (font.SmallCaps ==
TomBool
.tomTrue)
853
TomBool
hidden = font.Hidden;
854
if (hidden ==
TomBool
.tomUndefined)
860
return hidden ==
TomBool
.tomTrue;
866
TomBool
italic = font.Italic;
867
if (italic ==
TomBool
.tomUndefined)
873
return italic ==
TomBool
.tomTrue;
879
TomBool
outline = font.Outline;
880
TomBool
shadow = font.Shadow;
881
TomBool
emboss = font.Emboss;
882
TomBool
engrave = font.Engrave;
884
if (outline ==
TomBool
.tomUndefined || shadow ==
TomBool
.tomUndefined || emboss ==
TomBool
.tomUndefined || engrave ==
TomBool
.tomUndefined)
891
style |= (outline ==
TomBool
.tomTrue) ? OutlineStyles.Outline : 0;
892
style |= (shadow ==
TomBool
.tomTrue) ? OutlineStyles.Shadow : 0;
893
style |= (emboss ==
TomBool
.tomTrue) ? OutlineStyles.Embossed : 0;
894
style |= (engrave ==
TomBool
.tomTrue) ? OutlineStyles.Engraved : 0;
909
TomBool
protect = font.Protected;
910
if (protect ==
TomBool
.tomUndefined)
916
return protect ==
TomBool
.tomTrue;
922
TomBool
strike = font.StrikeThrough;
923
if (strike ==
TomBool
.tomUndefined)
929
return strike ==
TomBool
.tomTrue ? TextDecorationLineStyle.Single : TextDecorationLineStyle.None;
935
TomBool
sub = font.Subscript;
936
if (sub ==
TomBool
.tomUndefined)
942
return sub ==
TomBool
.tomTrue;
948
TomBool
super = font.Superscript;
949
if (super ==
TomBool
.tomUndefined)
955
return super ==
TomBool
.tomTrue;