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