5 implementations of IMECharCount
PresentationFramework (5)
System\Windows\Controls\PasswordTextContainer.cs (1)
499
int ITextContainer.
IMECharCount
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
318
int ITextContainer.
IMECharCount
System\Windows\Documents\FixedTextContainer.cs (1)
287
int ITextContainer.
IMECharCount
System\Windows\Documents\NullTextContainer.cs (1)
271
int ITextContainer.
IMECharCount
System\Windows\Documents\TextContainer.cs (1)
1845
int ITextContainer.
IMECharCount
11 references to IMECharCount
PresentationFramework (11)
System\Windows\Documents\TextStore.cs (11)
929
end = this.TextContainer.
IMECharCount
;
1051
_netCharCount = this.TextContainer.
IMECharCount
;
1270
int originalIMECharCount = this.TextContainer.
IMECharCount
;
1302
Invariant.Assert(originalIMECharCount == this.TextContainer.
IMECharCount
);
1630
_netCharCount = this.TextContainer.
IMECharCount
;
3344
if (_netCharCount != this.TextContainer.
IMECharCount
)
3355
if (offset < 0 || offset > this.TextContainer.
IMECharCount
)
3357
throw new ArgumentException(SR.Format(SR.TextStore_BadIMECharOffset, offset, this.TextContainer.
IMECharCount
));
3907
Invariant.Assert(_netCharCount == this.TextContainer.
IMECharCount
);
3961
Invariant.Assert(_netCharCount == this.TextContainer.
IMECharCount
);
4950
imeCharCount = textStore.TextContainer.
IMECharCount
;