مشاركة عبر


XmlMappedRange.ClearFormats أسلوب

مسح تنسيق XmlMappedRangeعنصر تحكم.

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

بناء الجملة

'إقرار
Function ClearFormats As Object
Object ClearFormats()

القيمة المُرجعة

النوع: System.Object

أمثلة

يلي تعليمات برمجية يستخدم المثال BorderAroundأسلوب لتطبيق حد سميك حول XmlMappedRange. المثال ثم يطلب من مستخدم إلى مسح الحدود باستخدام ClearFormatsالأسلوب. وهذا تعليمات برمجية بفرض أن ورقة عمل الحالي تحتوي على XmlMappedRangeباسم CustomerLastNameCell.

Private Sub SetBorder()
    Me.CustomerLastNameCell.BorderAround( _
        Weight:=Excel.XlBorderWeight.xlThick, _
        ColorIndex:=Excel.XlColorIndex.xlColorIndexAutomatic)

    If MessageBox.Show("Clear the border?", "Test", MessageBoxButtons.YesNo) = _
        DialogResult.Yes Then
        Me.CustomerLastNameCell.ClearFormats()
    End If
End Sub
private void SetBorder()
{
    this.CustomerLastNameCell.BorderAround(missing, 
        Excel.XlBorderWeight.xlThick, 
        Excel.XlColorIndex.xlColorIndexAutomatic, missing);

    if (MessageBox.Show("Clear the border?", "Test",
        MessageBoxButtons.YesNo) == DialogResult.Yes)
    {
        this.CustomerLastNameCell.ClearFormats();
    }
}

أمن NET Framework.

راجع أيضًَا

المرجع

XmlMappedRange واجهة

XmlMappedRange الأعضاء

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