[]
DDCell represents a single cell in a spreadsheet.
public class DDCell
| Name | Description |
|---|---|
| Alignment | Gets or sets the horizontal alignment value for the cell. |
| BorderBottomColor | Gets or sets the color of the bottom border of the cell. |
| BorderBottomStyle | Gets or sets the line style for the bottom border of the cell. |
| BorderDiagonalColor | Gets or sets the color of the diagonal part of the cell border. |
| BorderDiagonalEnum | Gets or sets the direction of the diagonal borders within the cell. |
| BorderDiagonalStyle | Gets or sets the line style for the diagonal part of the cell's border. |
| BorderLeftColor | Gets or sets the color of the left border of the cell. |
| BorderLeftStyle | Gets or sets the line style for the left border of the cell. |
| BorderRightColor | Gets or sets the color of the right border of the cell. |
| BorderRightStyle | Gets or sets the line style for the right border of the cell. |
| BorderTopColor | Gets or sets the color of the top border of the cell. |
| BorderTopStyle | Gets or sets the line style for the top border of the cell. |
| FillColor | Gets or sets the fill (background) color of the cell. |
| FontBold | Gets or sets the bold property of the font of the text displayed in the cell. |
| FontItalic | Gets or sets the italic property of the font of the text displayed in the cell. |
| FontName | Gets or sets the name of the font of the text displayed in the cell. |
| FontSize | Gets or sets the size of the font of the text displayed in the cell. |
| FontStrikeOut | Gets or sets the strikeout property of the cell font. |
| FontUnderlineStyle | Gets or sets the underline style for the font of the text displayed in the cell. |
| ForeColor | Gets or sets the foreground color (text color) of the cell. |
| Hyperlink | Gets or sets a hyperlink for the cell, which Excel automatically launches when the cell is clicked. |
| IsMerged | Gets a value indicating whether this cell is part of a merged group of cells. |
| MergeArea | Returns a MergeArea object representing the merged area containing this cell. |
| NumberFormat | Gets or sets an Excel-style number format string for the text displayed in the cell. |
| TextAngle | Gets or sets the angle of text rotation within the cell. |
| Type | Gets the type of cell that this DDCell object represents. |
| VertAlignment | Gets or sets the vertical alignment value for the cell. |
| WrapText | Gets or sets whether the text of the cell can be wrapped or not. |
| Name | Description |
|---|---|
| GetValue() | Returns the current value of the cell. |
| Merge(ushort, ushort) | Merges this cell with adjacent cells horizontally and vertically. |
| SetValue(BiffCellBoolErrValues) | Sets the cell type to |
| SetValue(double) | Sets the cell type to |
| SetValue(string) | Sets the cell type to |
| SetValueBlank() | Sets the cell type to |
| UnMerge() | Unmerges this cell and any cells currently merged with it, making them independent cells with their own value and style. |