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)
50
return _range.IsEqual(otherRange._range)==
TomBool
.tomTrue;
672
TomBool
allCaps = font.AllCaps;
673
TomBool
smallCaps = font.SmallCaps;
675
if (allCaps ==
TomBool
.tomUndefined || smallCaps ==
TomBool
.tomUndefined)
682
if (font.AllCaps ==
TomBool
.tomTrue)
686
else if (font.SmallCaps ==
TomBool
.tomTrue)
846
TomBool
hidden = font.Hidden;
847
if (hidden ==
TomBool
.tomUndefined)
853
return hidden ==
TomBool
.tomTrue;
859
TomBool
italic = font.Italic;
860
if (italic ==
TomBool
.tomUndefined)
866
return italic ==
TomBool
.tomTrue;
872
TomBool
outline = font.Outline;
873
TomBool
shadow = font.Shadow;
874
TomBool
emboss = font.Emboss;
875
TomBool
engrave = font.Engrave;
877
if (outline ==
TomBool
.tomUndefined || shadow ==
TomBool
.tomUndefined || emboss ==
TomBool
.tomUndefined || engrave ==
TomBool
.tomUndefined)
884
style |= (outline ==
TomBool
.tomTrue) ? OutlineStyles.Outline : 0;
885
style |= (shadow ==
TomBool
.tomTrue) ? OutlineStyles.Shadow : 0;
886
style |= (emboss ==
TomBool
.tomTrue) ? OutlineStyles.Embossed : 0;
887
style |= (engrave ==
TomBool
.tomTrue) ? OutlineStyles.Engraved : 0;
902
TomBool
protect = font.Protected;
903
if (protect ==
TomBool
.tomUndefined)
909
return protect ==
TomBool
.tomTrue;
915
TomBool
strike = font.StrikeThrough;
916
if (strike ==
TomBool
.tomUndefined)
922
return strike ==
TomBool
.tomTrue ? TextDecorationLineStyle.Single : TextDecorationLineStyle.None;
928
TomBool
sub = font.Subscript;
929
if (sub ==
TomBool
.tomUndefined)
935
return sub ==
TomBool
.tomTrue;
941
TomBool
super = font.Superscript;
942
if (super ==
TomBool
.tomUndefined)
948
return super ==
TomBool
.tomTrue;