Programmatically apply styles to ranges in workbooks
You can apply named styles to regions in workbooks. Excel supplies a number of predefined styles.
Applies to: The information in this topic applies to document-level projects and VSTO Add-in projects for Excel. For more information, see Features available by Office application and project type.
The Format Cells dialog box displays all the options you can use to format cells, and each of these options is available from your code. To display this dialog box in Excel, click Cells on the Format menu.
To apply a style to a named range in a document-level customization
Create a new style and set its attributes.
Excel.Style style = Globals.ThisWorkbook.Styles.Add("NewStyle"); style.Font.Name = "Verdana"; style.Font.Size = 12; style.Font.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red); style.Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Gray); style.Interior.Pattern = Excel.XlPattern.xlPatternSolid;
Create a NamedRange control, assign text to it, and then apply the new style. This code must be placed in a sheet class, not in the
ThisWorkbook
class.
To clear a style from a named range in a document-level customization
Apply the Normal style to the range. This code must be placed in a sheet class, not in the
ThisWorkbook
class.
To apply a style to a named range in a VSTO Add-in
Create a new style and set its attributes.
Excel.Style style = this.Application.ActiveWorkbook.Styles.Add("NewStyle"); style.Font.Name = "Verdana"; style.Font.Size = 12; style.Font.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red); style.Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Gray); style.Interior.Pattern = Excel.XlPattern.xlPatternSolid;
Create a Range, assign text to it, and then apply the new style.
To clear a style from a named range in a VSTO Add-in
Apply the Normal style to the range.