Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To save the efforts of developers, Aspose.Cells.GridWeb offers some preset styles. Simply select a style from the list to apply the style.
| Styles | Color Scheme |
|---|---|
| Standard | Silver |
| Colorful1 | Rose |
| Colorful2 | Blue |
| Professional1 | Cyan |
| Professional2 | Cyan again |
| Traditional1 | Dark |
| Traditional2 | Gray |
| Custom | Customized |
When a particular style is selected, it changes the whole appearance of the GridWeb control. Developers can select a preset style to be applied to the Grid during design time, and this task can also be accomplished at runtime using the flexible API of Aspose.Cells.GridWeb.
To select a preset style:
The GridWeb control provides the PresetStyle property, to which developers can assign any desired preset style.
The output of the code snippet below is shown.
GridWeb control with Colorful1 style applied to it

If you take a look at the GridWeb control, you’ll notice two header bars: one for columns (that is A, B, C, D, etc.) and the other for rows (that is 1, 2, 3, 4, etc.). Aspose.Cells.GridWeb allows developers to control the appearance of these header bars. Developers may set the style of header bars either at design time or runtime.
The output of the example code below is shown here.
Modified style of Header Bar

It’s possible to set the style of the tab bar.
Modified styles of active & non‑active tab bars

In the above figure, Sheet4 is the active tab, so its appearance is different from the other tabs, as defined by the example code below.
Aspose.Cells.GridWeb also supports persisting its appearance or style settings to a file. When you have set all the appearance properties of the GridWeb control, you may save these properties or settings to a disk file. This approach is very useful for developers to save time and effort by re‑using their old style configurations from a style file instead of setting all style (or appearance) properties of the control one by one.
Once you have finished setting style properties, you can save your style configuration settings in the form of an XML file (because the style file is stored as an XML file) by calling the SaveCustomStyleFile method of the GridWeb control.
To apply style settings from an existing style file to the GridWeb control, developers can set the path of the style file to the CustomStyleFileName property of the control. However, before doing that it is mandatory to set the PresetStyle property of the control to Custom, because the style file contains custom style information that is already defined by a developer.
<ViewerStyleTemplate SelectCellColor="Black" FrameTableStyle-BorderStyle="Solid" FrameTableStyle-LayoutFixed="Fixed" FrameTableStyle-BorderWidth="1px" FrameTableStyle-BorderColor="Gray" FrameTableStyle-BorderCollapse="Collapse" FrameTableStyle-BackColor="White" SelectCellBgColor="#EEEEFF" HeaderBarWidth="30pt" ScrollBarBaseColor="" HeaderBarStyle-LeftBorderStyle-BorderStyle="Solid" HeaderBarStyle-LeftBorderStyle-BorderWidth="1px" HeaderBarStyle-LeftBorderStyle-BorderColor="White" HeaderBarStyle-VerticalAlign="Middle" HeaderBarStyle-RightBorderStyle-BorderStyle="Solid" HeaderBarStyle-RightBorderStyle-BorderWidth="1px" HeaderBarStyle-RightBorderStyle-BorderColor="Gray" HeaderBarStyle-BorderWidth="1px" HeaderBarStyle-Font-Size="10pt" HeaderBarStyle-Font-Names="Arial" HeaderBarStyle-BorderColor="Gray" HeaderBarStyle-BorderStyle="Solid" HeaderBarStyle-HorizontalAlign="Center" HeaderBarStyle-ForeColor="Black" HeaderBarStyle-TopBorderStyle-BorderStyle="Solid" HeaderBarStyle-TopBorderStyle-BorderWidth="1px" HeaderBarStyle-TopBorderStyle-BorderColor="White" HeaderBarStyle-BackColor="#E0E0E0" HeaderBarStyle-BottomBorderStyle-BorderStyle="Solid" HeaderBarStyle-BottomBorderStyle-BorderWidth="1px" HeaderBarStyle-BottomBorderStyle-BorderColor="Gray" HeaderBarStyle-Wrap="False" ActiveHeaderColor="Black" HeaderBarTableStyle-LayoutFixed="Fixed" HeaderBarTableStyle-BorderWidth="0px" HeaderBarTableStyle-BorderCollapse="Separate" HeaderBarHeight="15pt" ActiveTabStyle-Height="15pt" ActiveTabStyle-BorderWidth="1px" ActiveTabStyle-Font-Size="10pt" ActiveTabStyle-Font-Names="Arial" ActiveTabStyle-BorderColor="Gray" ActiveTabStyle-BorderStyle="Solid" ActiveTabStyle-ForeColor="Black" ActiveTabStyle-BackColor="White" ActiveTabStyle-Wrap="False" ActiveCellColor="Black" DefaultGridLineColor="Silver" ViewTableStyle-LayoutFixed="Fixed" ViewTableStyle-BorderWidth="0px" ViewTableStyle-BorderCollapse="Collapse" ActiveCellBgColor="#DDDDFF" TabStyle-Height="15pt" TabStyle-BorderWidth="1px" TabStyle-Font-Size="10pt" TabStyle-Font-Names="Arial" TabStyle-BorderColor="Gray" TabStyle-BorderStyle="Solid" TabStyle-ForeColor="Black" TabStyle-BackColor="#E0E0E0" TabStyle-Wrap="False" ActiveHeaderBgColor="#F2F2F2" ScrollBarArrowColor="" BottomTableStyle-LayoutFixed="Fixed" BottomTableStyle-Height="20pt" BottomTableStyle-BorderWidth="0px" BottomTableStyle-BorderCollapse="Collapse" BottomTableStyle-TopBorderStyle-BorderStyle="Solid" BottomTableStyle-TopBorderStyle-BorderWidth="1px" BottomTableStyle-TopBorderStyle-BorderColor="Gray" BottomTableStyle-BackColor="#F0F0F0" />Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.