2 overrides of GetPositionFromCharIndex
System.Windows.Forms (2)
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
1940public override Point GetPositionFromCharIndex(int index)
winforms\Managed\System\WinForms\RichTextBox.cs (1)
2368public override Point GetPositionFromCharIndex(int index) {
6 references to GetPositionFromCharIndex
System.Windows.Forms (3)
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
1947pos = base.GetPositionFromCharIndex(index);
winforms\Managed\System\WinForms\RichTextBox.cs (1)
2370return base.GetPositionFromCharIndex(index);
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
609public System.Drawing.Point GetPositionFromCharIndex(int index) { return TextBox.GetPositionFromCharIndex(index); }
System.Workflow.Activities (3)
Rules\Design\Dialogs\IntellisenseTextBox.cs (3)
425Point clientPoint = this.GetPositionFromCharIndex(charIndex - 1); 431clientPoint.X = this.GetPositionFromCharIndex(0).X - 6; 498Point clientPoint = this.GetPositionFromCharIndex(charIndex - 1);