NamedRange.ClearFormats Method
Visual Studio 2012
Clears the formatting of the NamedRange control.
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
The following code example adds a note to a NamedRange control named NamedRange1 and then prompts you to remove all formatting from NamedRange1 by calling the ClearFormats method.
This example is for a document-level customization.
private void SetRangeFormats() { Microsoft.Office.Tools.Excel.NamedRange namedRange1 = this.Controls.AddNamedRange(this.Range["A1", "A5"], "namedRange1"); namedRange1.NoteText("This is a Formatting test"); namedRange1.Value2 = "Martha"; namedRange1.Font.Name = "Verdana"; namedRange1.VerticalAlignment = Excel.XlVAlign.xlVAlignCenter; namedRange1.HorizontalAlignment = Excel.XlHAlign.xlHAlignCenter; namedRange1.BorderAround(missing, Excel.XlBorderWeight.xlThick, Excel.XlColorIndex.xlColorIndexAutomatic); namedRange1.AutoFormat(Excel.XlRangeAutoFormat.xlRangeAutoFormat3DEffects1, true, false, true, false, true, true); if (MessageBox.Show("Clear the formatting and notes?", "Test", MessageBoxButtons.YesNo) == DialogResult.Yes) { namedRange1.ClearFormats(); namedRange1.ClearNotes(); } }
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.