[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.CellAttribute

CellAttribute Enum

Specifies the type of cell element attribute used when exporting to HTML.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public enum CellAttribute
Public Enum CellAttribute
Examples
HtmlSaveOptions options = new HtmlSaveOptions();
options.CellAttributeOptions = new Dictionary<CellAttribute, string>
{
    { CellAttribute.Address, "address" }
};
workbook.Save(outputStream, options);

Fields

Name Description
Address

Specifies the cell address attribute, which adds the cell's address (for example, "A1" or "B2") as an attribute to each cell element in the exported HTML.