5 implementations of IMECharCount
PresentationFramework (5)
System\Windows\Controls\PasswordTextContainer.cs (1)
495
int ITextContainer.
IMECharCount
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
301
int ITextContainer.
IMECharCount
System\Windows\Documents\FixedTextContainer.cs (1)
270
int ITextContainer.
IMECharCount
System\Windows\Documents\NullTextContainer.cs (1)
266
int ITextContainer.
IMECharCount
System\Windows\Documents\TextContainer.cs (1)
1833
int ITextContainer.
IMECharCount
11 references to IMECharCount
PresentationFramework (11)
System\Windows\Documents\TextStore.cs (11)
917
end = this.TextContainer.
IMECharCount
;
1036
_netCharCount = this.TextContainer.
IMECharCount
;
1255
int originalIMECharCount = this.TextContainer.
IMECharCount
;
1287
Invariant.Assert(originalIMECharCount == this.TextContainer.
IMECharCount
);
1612
_netCharCount = this.TextContainer.
IMECharCount
;
3319
if (_netCharCount != this.TextContainer.
IMECharCount
)
3330
if (offset < 0 || offset > this.TextContainer.
IMECharCount
)
3332
throw new ArgumentException(SR.Format(SR.TextStore_BadIMECharOffset, offset, this.TextContainer.
IMECharCount
));
3879
Invariant.Assert(_netCharCount == this.TextContainer.
IMECharCount
);
3933
Invariant.Assert(_netCharCount == this.TextContainer.
IMECharCount
);
4920
imeCharCount = textStore.TextContainer.
IMECharCount
;