4 writes to SelectionStart
System.Windows.Forms (4)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (3)
1271
SelectionStart
= 0;
3044
SelectionStart
= 0;
3062
SelectionStart
= boundaryStart;
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
288
set { ComboBox.
SelectionStart
= value; }
8 references to SelectionStart
System.Windows.Forms (8)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (2)
140
_owningComboBox.
SelectionStart
,
141
_owningComboBox.
SelectionStart
));
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (5)
1038
get => DropDownStyle == ComboBoxStyle.DropDownList ? string.Empty : Text.Substring(
SelectionStart
, SelectionLength);
1070
Select(
SelectionStart
, value);
3057
else if (
SelectionStart
!= 0)
3059
int boundaryStart = ClientUtils.GetWordBoundaryStart(Text,
SelectionStart
);
3060
int length =
SelectionStart
- boundaryStart;
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
287
get { return ComboBox.
SelectionStart
; }