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