ControlExtensions.AddPropertyGrid 方法 (ControlCollection, Double, Double, Double, Double, String)

按照指定的大小和位置向工作表添加一个新的 PropertyGrid 控件。

命名空间:  Microsoft.Office.Tools.Excel
程序集:  Microsoft.Office.Tools.Excel.v4.0.Utilities(在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)

语法

声明
<ExtensionAttribute> _
Public Shared Function AddPropertyGrid ( _
    controls As ControlCollection, _
    left As Double, _
    top As Double, _
    width As Double, _
    height As Double, _
    name As String _
) As PropertyGrid
public static PropertyGrid AddPropertyGrid(
    this ControlCollection controls,
    double left,
    double top,
    double width,
    double height,
    string name
)

参数

  • left
    类型:System.Double
    控件左边缘与工作表左边缘之间的距离(以磅为单位)。
  • top
    类型:System.Double
    控件上边缘与工作表上边缘之间的距离(以磅为单位)。
  • width
    类型:System.Double
    控件的宽度(以磅为单位)。
  • height
    类型:System.Double
    控件的高度(以磅为单位)。

返回值

类型:Microsoft.Office.Tools.Excel.Controls.PropertyGrid
添加到 ControlCollection 实例的 PropertyGrid 控件。

使用说明

在 Visual Basic 和 C# 中,可以在 ControlCollection 类型的任何对象上将此方法作为实例方法来调用。当使用实例方法语法调用此方法时,请省略第一个参数。有关更多信息,请参见扩展方法 (Visual Basic)扩展方法(C# 编程指南)

异常

异常 条件
ArgumentNullException

名称参数为 nullnull 引用(在 Visual Basic 中为 Nothing) 或长度为零。

ControlNameAlreadyExistsException

ControlCollection 实例中已存在一个同名控件。

备注

使用 AddPropertyGrid 方法可以将 PropertyGrid 对象添加到 ControlCollection 的末尾。 若要移除以前以编程方式添加的 PropertyGrid 控件,请使用 Remove 方法。

示例

下面的代码示例向工作表中添加一个 PropertyGrid 控件和一个 Button 控件。 然后在 PropertyGrid 中显示该按钮的属性。 若要使用此示例,请从文档级项目内的 Sheet1 类中运行此示例。

    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;
}

.NET Framework 安全性

请参见

参考

ControlExtensions 类

AddPropertyGrid 重载

Microsoft.Office.Tools.Excel 命名空间