Sdílet prostřednictvím


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

Aktualisiert: November 2007

Fügt dem Arbeitsblatt an der angegebenen Position ein neues PropertyGrid-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 AddPropertyGrid ( _
    left As Double, _
    top As Double, _
    width As Double, _
    height As Double, _
    name As String _
) As PropertyGrid
'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 PropertyGrid

returnValue = instance.AddPropertyGrid(left, _
    top, width, height, name)
public PropertyGrid AddPropertyGrid(
    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.PropertyGrid

Das PropertyGrid-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 AddPropertyGrid-Methode können Sie PropertyGrid-Objekte am Ende der ControlCollection hinzufügen. Um ein PropertyGrid-Steuerelement zu entfernen, das zuvor programmgesteuert hinzugefügt wurde, verwenden Sie die Remove()-Methode.

Beispiele

Im folgenden Codebeispiel werden dem Arbeitsblatt ein PropertyGrid-Steuerelement und ein Button-Steuerelement hinzugefügt. Dann werden die Eigenschaften der Schaltfläche im PropertyGrid angezeigt.

Private Sub ExcelAddPropertyGrid()
    Dim PropertyGrid1 As Microsoft.Office.Tools. _
        Excel.Controls.PropertyGrid = Me.Controls. _
        AddPropertyGrid(0, 0, 150, 150, "PropertyGrid1")

    Dim Button1 As Microsoft.Office.Tools.Excel. _
        Controls.Button = Me.Controls.AddButton( _
        0, 160, 56.25, 17.25, "Button1")

    Button1.Text = "OK"
    PropertyGrid1.SelectedObject = Button1

End Sub

private void ExcelAddPropertyGrid()
{
    Microsoft.Office.Tools.Excel.Controls.PropertyGrid
         propertyGrid1 = this.Controls.AddPropertyGrid(
         0, 0, 150, 150, "propertyGrid1");

    Microsoft.Office.Tools.Excel.Controls.Button button1 =
        this.Controls.AddButton(0, 160, 56.25, 17.25, "button1");
    button1.Text = "OK";

    propertyGrid1.SelectedObject = button1;
}

Berechtigungen

Siehe auch

Referenz

ControlCollection-Klasse

ControlCollection-Member

AddPropertyGrid-Überladung

Microsoft.Office.Tools.Excel-Namespace