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)
1840
int ITextContainer.
IMECharCount
11 references to IMECharCount
PresentationFramework (11)
System\Windows\Documents\TextStore.cs (11)
918
end = this.TextContainer.
IMECharCount
;
1040
_netCharCount = this.TextContainer.
IMECharCount
;
1259
int originalIMECharCount = this.TextContainer.
IMECharCount
;
1291
Invariant.Assert(originalIMECharCount == this.TextContainer.
IMECharCount
);
1619
_netCharCount = this.TextContainer.
IMECharCount
;
3335
if (_netCharCount != this.TextContainer.
IMECharCount
)
3346
if (offset < 0 || offset > this.TextContainer.
IMECharCount
)
3348
throw new ArgumentException(SR.Format(SR.TextStore_BadIMECharOffset, offset, this.TextContainer.
IMECharCount
));
3898
Invariant.Assert(_netCharCount == this.TextContainer.
IMECharCount
);
3952
Invariant.Assert(_netCharCount == this.TextContainer.
IMECharCount
);
4937
imeCharCount = textStore.TextContainer.
IMECharCount
;