# CellStyle
Class
## Enumerations
| Name | Value | Description |
| --- | :---: | --- |
| HorizontalAlignments | Left <br > Center <br > Right | Supported horizontal alignment values. |
| OverflowStyles | Visible <br > Hidden <br > Ellipsize <br > LineBreak | Supported text overflow styles. |
| VerticalAlignments | Top <br > Middle <br > Bottom | Supported vertical alignments. |
## Methods
| Name | Parameters | Return Type | Description |
| --- | :---: | :---: | --- |
| Constructor | (None) | (None) | Creates a new instance of the class. |
| Constructor | fontName as String <br> fontSize as Integer <br> fontColor as Color | (None) | Creates a new instance of the class. |
## Properties
| Name | Type | Default Value | Description |
| --- | :---: | :---: | --- |
| CellPadding | Integer | 10 | Amount of space between the cell borders and content. |
| FillColor | Color | &cFFFFFF | The background color to apply to the cell. |
| FontName | String | "Helvetica" | The font to apply to the cell's text. |
| FontSize | Integer | 10 | The size of the font to be used. |
| FontStyle | GraffitiPDF.Document.FontStyles | (None) | Value from the FontStyles enumeration to apply decoration to the cell's text. |
| Height | Integer | 0 | Height of the cell. |
| HorizontalAlignment | HorizontalAlignments | (None) | Value from the Alignments enumeration to apply to the cell's text. |
| LineColor | Color | (None) | Color to apply to borders. |
| LineWidth | Integer | 0 | The width of the pen to be used for drawing border lines. |
| Overflow | OverflowStyles | (None) | The overflow display method to be used. |
| Padding | Integer | 5 | Width/Height of padding from the edges of the cell to use when drawing the cell's text. |
| TextColor | Color | &c000000 | Color applied to text drawn in the cell. |
| VerticalAlignment | VerticalAlignments | (None) | The vertical position of the cell's text. |