4 writes to SelectionLength
System.Windows.Forms (4)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (3)
1272SelectionLength = text.Length; 3045SelectionLength = Text.Length; 3063SelectionLength = length;
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
279set { ComboBox.SelectionLength = value; }
4 references to SelectionLength
System.Windows.Forms (4)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (3)
1038get => DropDownStyle == ComboBoxStyle.DropDownList ? string.Empty : Text.Substring(SelectionStart, SelectionLength); 1092Select(value, SelectionLength); 3053if (SelectionLength != 0)
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
278get { return ComboBox.SelectionLength; }