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