ControlCollection.Contains 方法 (Object)
判斷指定的控制項是否為 ControlCollection 執行個體的成員。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
Function Contains ( _
control As Object _
) As Boolean
bool Contains(
Object control
)
參數
- control
型別:System.Object
要在 ControlCollection 執行個體中搜尋的控制項。
傳回值
型別:System.Boolean
如果已在集合中找到控制項,則為 true,否則為 false。
範例
下列程式碼範例會將 Button 控制項加入至工作表的頂端,然後在訊息方塊中顯示按鈕的索引。
Private Sub ExcelControlIndexOf()
Dim Button1 As Microsoft.Office.Tools.Excel. _
Controls.Button = Me.Controls.AddButton( _
0, 0, 56.25, 17.25, "Button1")
Button1.Text = "OK"
If Me.Controls.Contains(Button1) Then
MessageBox.Show("The index of Button1 is " _
& Controls.IndexOf(Button1))
End If
End Sub
private void ExcelControlIndexOf()
{
Microsoft.Office.Tools.Excel.Controls.Button button1 =
this.Controls.AddButton(0, 0, 56.25, 17.25,
"button1");
button1.Text = "OK";
if (this.Controls.Contains(button1))
{
MessageBox.Show("The index of button1 is " +
Controls.IndexOf(button1));
}
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。