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