5 implementations of IMECharCount
PresentationFramework (5)
System\Windows\Controls\PasswordTextContainer.cs (1)
496
int ITextContainer.
IMECharCount
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
302
int ITextContainer.
IMECharCount
System\Windows\Documents\FixedTextContainer.cs (1)
271
int ITextContainer.
IMECharCount
System\Windows\Documents\NullTextContainer.cs (1)
267
int ITextContainer.
IMECharCount
System\Windows\Documents\TextContainer.cs (1)
1834
int ITextContainer.
IMECharCount
11 references to IMECharCount
PresentationFramework (11)
System\Windows\Documents\TextStore.cs (11)
918
end = this.TextContainer.
IMECharCount
;
1037
_netCharCount = this.TextContainer.
IMECharCount
;
1256
int originalIMECharCount = this.TextContainer.
IMECharCount
;
1288
Invariant.Assert(originalIMECharCount == this.TextContainer.
IMECharCount
);
1616
_netCharCount = this.TextContainer.
IMECharCount
;
3329
if (_netCharCount != this.TextContainer.
IMECharCount
)
3340
if (offset < 0 || offset > this.TextContainer.
IMECharCount
)
3342
throw new ArgumentException(SR.Format(SR.TextStore_BadIMECharOffset, offset, this.TextContainer.
IMECharCount
));
3889
Invariant.Assert(_netCharCount == this.TextContainer.
IMECharCount
);
3943
Invariant.Assert(_netCharCount == this.TextContainer.
IMECharCount
);
4930
imeCharCount = textStore.TextContainer.
IMECharCount
;