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
);
1615
_netCharCount = this.TextContainer.
IMECharCount
;
3328
if (_netCharCount != this.TextContainer.
IMECharCount
)
3339
if (offset < 0 || offset > this.TextContainer.
IMECharCount
)
3341
throw new ArgumentException(SR.Format(SR.TextStore_BadIMECharOffset, offset, this.TextContainer.
IMECharCount
));
3888
Invariant.Assert(_netCharCount == this.TextContainer.
IMECharCount
);
3942
Invariant.Assert(_netCharCount == this.TextContainer.
IMECharCount
);
4929
imeCharCount = textStore.TextContainer.
IMECharCount
;