ToolStripComboBox::Select Method (Int32, Int32)

 

Selects a range of text in the editable portion of the ToolStripComboBox.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
void Select(
	int start,
	int length
)

Parameters

start
Type: System::Int32

The position of the first character in the current text selection within the text box.

length
Type: System::Int32

The number of characters to select.

Exception Condition
ArgumentException

The start is less than zero.

-or-

start minus length is less than zero.

If you want to set the start position to the first character in the control's text, set the start parameter to zero. You can use this method to select a substring of text, such as when searching through the text of the control and replacing information.

.NET Framework
Available since 2.0
Return to top
Show: