Sdílet prostřednictvím


ControlCollection.AddComboBox-Methode (Double, Double, Double, Double, String) (2007 System)

Aktualisiert: November 2007

Fügt dem Arbeitsblatt an der angegebenen Position ein neues ComboBox-Steuerelement in der angegebenen Größe hinzu.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v9.0 (in Microsoft.Office.Tools.Excel.v9.0.dll)

Syntax

'Declaration
Public Function AddComboBox ( _
    left As Double, _
    top As Double, _
    width As Double, _
    height As Double, _
    name As String _
) As ComboBox
'Usage
Dim instance As ControlCollection
Dim left As Double
Dim top As Double
Dim width As Double
Dim height As Double
Dim name As String
Dim returnValue As ComboBox

returnValue = instance.AddComboBox(left, _
    top, width, height, name)
public ComboBox AddComboBox(
    double left,
    double top,
    double width,
    double height,
    string name
)

Parameter

  • left
    Typ: System.Double

    Die Entfernung zwischen dem linken Rand des Steuerelements und dem linken Rand des Arbeitsblatts in Punkt.

  • top
    Typ: System.Double

    Die Entfernung zwischen dem oberen Rand des Steuerelements und dem oberen Rand des Arbeitsblatts in Punkt.

  • width
    Typ: System.Double

    Die Breite des Steuerelements in Punkt.

  • height
    Typ: System.Double

    Die Höhe des Steuerelements in Punkt.

Rückgabewert

Typ: Microsoft.Office.Tools.Excel.Controls.ComboBox

Das ComboBox-Steuerelement, das der ControlCollection-Instanz hinzugefügt wurde.

Ausnahmen

Ausnahme Bedingung
ArgumentNullException

Das Argument für den Namen ist nullNULL-Verweis (Nothing in Visual Basic) oder hat die Länge 0 (null).

ControlNameAlreadyExistsException

Ein Steuerelement mit dem gleichen Namen ist bereits in der ControlCollection-Instanz vorhanden.

Hinweise

Mithilfe der AddComboBox-Methode können Sie ComboBox-Objekte am Ende der ControlCollection hinzufügen. Um ein ComboBox-Steuerelement zu entfernen, das zuvor programmgesteuert hinzugefügt wurde, verwenden Sie die Remove()-Methode.

Beispiele

Im folgenden Codebeispiel wird oben im Arbeitsblatt ein ComboBox-Steuerelement hinzugefügt, dem Kombinationsfeld werden zwei Elemente hinzugefügt, und dann wird das erste Element ausgewählt.

Private Sub ExcelAddComboBox()

    Dim ComboBox1 As Microsoft.Office.Tools.Excel. _
        Controls.ComboBox = Me.Controls.AddComboBox( _
        0, 0, 90.75, 15.75, "ComboBox1")
    ComboBox1.Items.Add("First Item")
    ComboBox1.Items.Add("Second Item")
    ComboBox1.SelectedIndex = 0

End Sub

private void ExcelAddComboBox()
{

    Microsoft.Office.Tools.Excel.Controls.ComboBox
        comboBox1 = this.Controls.AddComboBox(0, 0,
        90.75, 15.75, "comboBox1");
    comboBox1.Items.Add("First Item");
    comboBox1.Items.Add("Second Item");
    comboBox1.SelectedIndex = 0;
}

Berechtigungen

Siehe auch

Referenz

ControlCollection-Klasse

ControlCollection-Member

AddComboBox-Überladung

Microsoft.Office.Tools.Excel-Namespace