Button.Index 属性
获取 Button 在工作表上的 OLEObjects 集合内的索引号。
命名空间: Microsoft.Office.Tools.Excel.Controls
程序集: Microsoft.Office.Tools.Excel.v4.0.Utilities(在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)
语法
声明
Public ReadOnly Property Index As Integer
public int Index { get; }
属性值
类型:System.Int32
Button 在工作表上的 OLEObjects 集合内的索引号。
备注
添加到 Microsoft Office Excel 工作表上的控件的索引值从 2 开始,因为它是工作表的 OLEObjects 集合的索引。
示例
下面的代码示例向工作表中添加三个 Button 控件。 这三个按钮共享一个 Click 事件处理程序,该事件处理程序使用 Index 属性来显示被单击的按钮的索引。
此示例针对的是文档级自定义项。
Private Sub DisplayIndex()
Dim IndexButton1 As Microsoft.Office.Tools.Excel.Controls.Button = _
Me.Controls.AddButton(Me.Range("B2", "C3"), "IndexButton1")
IndexButton1.Text = "Click to view the index"
AddHandler IndexButton1.Click, AddressOf indexButton_Click
Dim IndexButton2 As Microsoft.Office.Tools.Excel.Controls.Button = _
Me.Controls.AddButton(Me.Range("B5", "C6"), "IndexButton2")
IndexButton2.Text = "Click to view the index"
AddHandler IndexButton2.Click, AddressOf indexButton_Click
Dim IndexButton3 As Microsoft.Office.Tools.Excel.Controls.Button = _
Me.Controls.AddButton(Me.Range("B8", "C9"), "IndexButton3")
IndexButton3.Text = "Click to view the index"
AddHandler IndexButton3.Click, AddressOf indexButton_Click
End Sub
Private Sub IndexButton_Click(ByVal sender As Object, ByVal e As EventArgs)
Dim ClickedButton As Microsoft.Office.Tools.Excel.Controls.Button = _
CType(sender, Microsoft.Office.Tools.Excel.Controls.Button)
MsgBox("The index is " & ClickedButton.Index.ToString())
End Sub
private void DisplayIndex()
{
Microsoft.Office.Tools.Excel.Controls.Button indexButton1 =
this.Controls.AddButton(this.Range["B2", "C3"],
"indexButton1");
indexButton1.Text = "Click to view the index";
indexButton1.Click += new EventHandler(indexButton_Click);
Microsoft.Office.Tools.Excel.Controls.Button indexButton2 =
this.Controls.AddButton(this.Range["B5", "C6"],
"indexButton2");
indexButton2.Text = "Click to view the index";
indexButton2.Click += new EventHandler(indexButton_Click);
Microsoft.Office.Tools.Excel.Controls.Button indexButton3 =
this.Controls.AddButton(this.Range["B8", "C9"],
"indexButton3");
indexButton3.Text = "Click to view the index";
indexButton3.Click += new EventHandler(indexButton_Click);
}
void indexButton_Click(object sender, EventArgs e)
{
Microsoft.Office.Tools.Excel.Controls.Button clickedButton =
(Microsoft.Office.Tools.Excel.Controls.Button)sender;
MessageBox.Show("The index is " +
clickedButton.Index.ToString());
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。