4 writes to SelectionStart
System.Windows.Forms (4)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (3)
1275
SelectionStart
= 0;
3057
SelectionStart
= 0;
3075
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)
1042
get => DropDownStyle == ComboBoxStyle.DropDownList ? string.Empty : Text.Substring(
SelectionStart
, SelectionLength);
1074
Select(
SelectionStart
, value);
3070
else if (
SelectionStart
!= 0)
3072
int boundaryStart = ClientUtils.GetWordBoundaryStart(Text,
SelectionStart
);
3073
int length =
SelectionStart
- boundaryStart;
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
287
get { return ComboBox.
SelectionStart
; }