FormComboBoxControl.delete(String) Method

Definition

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");

Applies to