4 writes to SelectionStart
System.Windows.Forms (4)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (3)
1186
SelectionStart
= 0;
2926
SelectionStart
= 0;
2944
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)
953
get => DropDownStyle == ComboBoxStyle.DropDownList ? string.Empty : Text.Substring(
SelectionStart
, SelectionLength);
985
Select(
SelectionStart
, value);
2939
else if (
SelectionStart
!= 0)
2941
int boundaryStart = ClientUtils.GetWordBoundaryStart(Text,
SelectionStart
);
2942
int length =
SelectionStart
- boundaryStart;
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
287
get { return ComboBox.
SelectionStart
; }