NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ComboBox.Select

Selects the text in the editable portion of the ComboBox at the from the given start index to the given end index.

[Visual Basic]
Public Sub Select( _
   ByVal start As Integer, _
   ByVal length As Integer _
)
[C#]
public void Select(
   int start,
   int length
);
[C++]
public: void Select(
   int start,
   int length
);
[JScript]
public function Select(
   start : int,
   length : int
);

Parameters

start
Where to start selecting [zero-based]
length
Number of characters to select

See Also

ComboBox Class | ComboBox Members | System.WinForms Namespace