53 references to TomBool
UIAutomationClientSideProviders (53)
MS\Internal\AutomationProxies\Tom.cs (16)
101
TomBool
InRange(ITextRange range);
103
TomBool
IsEqual(ITextRange range);
164
new
TomBool
InRange(ITextRange range);
166
new
TomBool
IsEqual(ITextRange range);
232
TomBool
AllCaps { get; set; }
247
TomBool
Emboss { get; set; }
253
TomBool
Hidden { get; set; }
256
TomBool
Engrave { get; set; }
259
TomBool
Italic { get; set; }
273
TomBool
Outline { get; set; }
280
TomBool
Protected { get; set; }
283
TomBool
Shadow { get; set; }
289
TomBool
SmallCaps { get; set; }
296
TomBool
StrikeThrough { get; set; }
299
TomBool
Subscript { get; set; }
302
TomBool
Superscript { get; set; }
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (37)
53
return _range.IsEqual(otherRange._range)==
TomBool
.tomTrue;
678
TomBool
allCaps = font.AllCaps;
679
TomBool
smallCaps = font.SmallCaps;
681
if (allCaps ==
TomBool
.tomUndefined || smallCaps ==
TomBool
.tomUndefined)
688
if (font.AllCaps ==
TomBool
.tomTrue)
692
else if (font.SmallCaps ==
TomBool
.tomTrue)
852
TomBool
hidden = font.Hidden;
853
if (hidden ==
TomBool
.tomUndefined)
859
return hidden ==
TomBool
.tomTrue;
865
TomBool
italic = font.Italic;
866
if (italic ==
TomBool
.tomUndefined)
872
return italic ==
TomBool
.tomTrue;
878
TomBool
outline = font.Outline;
879
TomBool
shadow = font.Shadow;
880
TomBool
emboss = font.Emboss;
881
TomBool
engrave = font.Engrave;
883
if (outline ==
TomBool
.tomUndefined || shadow ==
TomBool
.tomUndefined || emboss ==
TomBool
.tomUndefined || engrave ==
TomBool
.tomUndefined)
890
style |= (outline ==
TomBool
.tomTrue) ? OutlineStyles.Outline : 0;
891
style |= (shadow ==
TomBool
.tomTrue) ? OutlineStyles.Shadow : 0;
892
style |= (emboss ==
TomBool
.tomTrue) ? OutlineStyles.Embossed : 0;
893
style |= (engrave ==
TomBool
.tomTrue) ? OutlineStyles.Engraved : 0;
908
TomBool
protect = font.Protected;
909
if (protect ==
TomBool
.tomUndefined)
915
return protect ==
TomBool
.tomTrue;
921
TomBool
strike = font.StrikeThrough;
922
if (strike ==
TomBool
.tomUndefined)
928
return strike ==
TomBool
.tomTrue ? TextDecorationLineStyle.Single : TextDecorationLineStyle.None;
934
TomBool
sub = font.Subscript;
935
if (sub ==
TomBool
.tomUndefined)
941
return sub ==
TomBool
.tomTrue;
947
TomBool
super = font.Superscript;
948
if (super ==
TomBool
.tomUndefined)
954
return super ==
TomBool
.tomTrue;