FormComboBoxControl.delete(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes a string value from the combo box list.
public:
virtual void delete(System::String ^ _string);
public virtual void delete (string _string);
abstract member delete : string -> unit
override this.delete : string -> unit
Public Overridable Sub delete (_string As String)
Parameters
- _string
- String
The string value to remove from the combo box list.
Remarks
The following example shows how to remove a string value from the combo box list.
this.delete("Model 12357");