Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Microsoft Excel can set the foreground (outline) and background (fill) colors of cells and background patterns.
Aspose.Cells also supports these features in a flexible manner. In this topic, we learn to use these features using Aspose.Cells.
Aspose.Cells provides a class, Workbook that represents a Microsoft Excel file. The Workbook class contains a Worksheets collection that allows access to each worksheet in the Excel file. A worksheet is represented by the Worksheet class. The Worksheet class provides a Cells collection. Each item in the Cells collection represents an object of the Cell class.
The Cell has the GetStyle and SetStyle methods that are used to get and set a cell’s formatting. The Style class provides properties for setting the foreground and background colors of the cells. Aspose.Cells provides a BackgroundType enumeration that contains a set of pre-defined types of background patterns which are given below.
| Background Patterns | Description |
|---|---|
| DiagonalCrosshatch | Represents diagonal crosshatch pattern |
| DiagonalStripe | Represents diagonal stripe pattern |
| Gray6 | Represents 6.25% gray pattern |
| Gray12 | Represents 12.5% gray pattern |
| Gray25 | Represents 25% gray pattern |
| Gray50 | Represents 50% gray pattern |
| Gray75 | Represents 75% gray pattern |
| HorizontalStripe | Represents horizontal stripe pattern |
| None | Represents no background |
| ReverseDiagonalStripe | Represents reverse diagonal stripe pattern |
| Solid | Represents solid pattern |
| ThickDiagonalCrosshatch | Represents thick diagonal crosshatch pattern |
| ThinDiagonalCrosshatch | Represents thin diagonal crosshatch pattern |
| ThinDiagonalStripe | Represents thin diagonal stripe pattern |
| ThinHorizontalCrosshatch | Represents thin horizontal crosshatch pattern |
| ThinHorizontalStripe | Represents thin horizontal stripe pattern |
| ThinReverseDiagonalStripe | Represents thin reverse diagonal stripe pattern |
| ThinVerticalStripe | Represents thin vertical stripe pattern |
| VerticalStripe | Represents vertical stripe pattern |
In the example below, the foreground color of the A1 cell is set but A2 is configured to have both foreground and background colors with a vertical stripe background pattern.
To apply your desired Gradient Fill Effects to the cell, use the Style object’s SetTwoColorGradient method accordingly.
A palette is the number of colors available for use in creating an image. The use of a standardized palette in a presentation allows the user to create a consistent look. Each Microsoft Excel (97-2003) file has a palette of 56 colors that can be applied to cells, fonts, gridlines, graphic objects, fills and lines in a chart.
With Aspose.Cells it is possible not only to use the palette’s existing colors but also custom colors. Before using a custom color, add it to the palette first.
This topic discusses how to add custom colors to the palette.
Aspose.Cells supports Microsoft Excel’s 56 color palette. To use a custom color that is not defined in the palette, add the color to the palette.
Aspose.Cells provides a class, Workbook, that represents a Microsoft Excel file. The Workbook class provides a ChangePalette method that takes the following parameters to add a custom color to modify the palette:
The example below adds a custom color (Orchid) to the palette before applying it on a font.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.