Button.Parent الخاصية
يحصل على الأصل كائن ل Button.
مساحة الاسم: Microsoft.Office.Tools.Excel.Controls
التجميع: Microsoft.Office.Tools.Excel.v4.0.Utilities (في Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
بناء الجملة
'إقرار
Public ReadOnly Property Parent As Object
Get
public Object Parent { get; }
قيمة الخاصية
النوع: System.Object
الكائن الأصل ل Button.
ملاحظات
الأصل Buttonهو عنصر تحكم حاوية التي تصل Buttonمستند، لا Rangeالذي يحتوي على Button.
الأصل Buttonيمكن الوصول إليها فقط Object.
أمثلة
يلي تعليمات برمجية في المثال إضافة عنصر Buttonعنصر التحكم إلى ورقة عمل الحالي. Clickمعالج الحدث هذا زر يعرض القيمة Parentخاصية.
Th هو المثال هو لتخصيص المستوى مستند.
Private Sub DisplayParent()
Dim ParentButton As Microsoft.Office.Tools.Excel.Controls.Button = _
Me.Controls.AddButton(Me.Range("B2", "C3"), "ParentButton")
ParentButton.Text = "Click to view parent"
AddHandler ParentButton.Click, AddressOf parentButton_Click
End Sub
Private Sub ParentButton_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 parent is: " & ClickedButton.Parent.ToString())
End Sub
private void DisplayParent()
{
Microsoft.Office.Tools.Excel.Controls.Button parentButton =
this.Controls.AddButton(this.Range["B2", "C3"],
"parentButton");
parentButton.Text = "Click to view parent";
parentButton.Click += new EventHandler(parentButton_Click);
}
void parentButton_Click(object sender, EventArgs e)
{
Microsoft.Office.Tools.Excel.Controls.Button clickedButton =
(Microsoft.Office.Tools.Excel.Controls.Button)sender;
MessageBox.Show("The parent is: " +
clickedButton.Parent.ToString());
}
أمن NET Framework.
- الثقة الكاملة للمتصل الفوري. يتعذر استخدام هذا العضو بواسطة التعليمات البرمجية الموثوق بها جزئيًا. لمزيد من المعلومات، راجع باستخدام مكتبات من تعليمات برمجية موثوق بها جزئي.