مشاركة عبر


Button.BottomRightCell الخاصية

تحصل على Rangeالكائن الذي يمثل الخلايا التي تقع تحت السفلي-يمين الزاوية من Button.

مساحة الاسم:  Microsoft.Office.Tools.Excel.Controls
التجميع:  Microsoft.Office.Tools.Excel.v4.0.Utilities (في Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

بناء الجملة

'إقرار
Public ReadOnly Property BottomRightCell As Range
    Get
public Range BottomRightCell { get; }

قيمة الخاصية

النوع: Microsoft.Office.Interop.Excel.Range
Rangeالكائن الذي يمثل الخلايا التي تقع تحت السفلي-يمين الزاوية من Button.

ملاحظات

إرجاع خلية يعتمد تشغيل عدد خلايا عنصر تحكم تداخلات والإعداد في Placementخاصية.

أمثلة

ما يلي تعليمات برمجية يستخدم المثال في TopLeftCellو BottomRightCellالخصائص الحصول على أعلى اليسار والسفلي الأيمن خلايا بالنسبة إلى Buttonعنصر التحكم. Clickمعالج الحدث من زر الألوان حدود أحمر. خلية اليسرى العليا اليمنى والسفلي

Th هو المثال هو لتخصيص المستوى مستند.

Private Sub MarkCornerCells()
    Dim CornerButton As Microsoft.Office.Tools.Excel.Controls.Button = _
        Me.Controls.AddButton(65, 45, 100, 25, "CornerButton")
    CornerButton.Text = "Click to highlight corners."
    AddHandler CornerButton.Click, AddressOf CornerButton_Click
End Sub

Private Sub CornerButton_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)
    ClickedButton.BottomRightCell.Borders.Color = _
        ColorTranslator.ToOle(Color.Red)
    ClickedButton.TopLeftCell.Borders.Color = _
        ColorTranslator.ToOle(Color.Red)
End Sub
private void MarkCornerCells()
{
    Microsoft.Office.Tools.Excel.Controls.Button button1 =
        this.Controls.AddButton(65, 45, 100, 25,
        "button1");
    button1.Text = "Click to highlight corners.";
    button1.Click += new EventHandler(button1_Click);
}

void button1_Click(object sender, EventArgs e)
{
    Microsoft.Office.Tools.Excel.Controls.Button clickedButton =
        (Microsoft.Office.Tools.Excel.Controls.Button)sender;

    clickedButton.BottomRightCell.Borders.Color = 
        ColorTranslator.ToOle(Color.Red);
    clickedButton.TopLeftCell.Borders.Color =
        ColorTranslator.ToOle(Color.Red);
}

أمن NET Framework.

راجع أيضًَا

المرجع

Button الفئة

Button الأعضاء

Microsoft.Office.Tools.Excel.Controls مساحة الاسم