[]
Specifies the type of cell element attribute used when exporting to HTML.
public enum CellAttribute
Public Enum CellAttribute
HtmlSaveOptions options = new HtmlSaveOptions();
options.CellAttributeOptions = new Dictionary<CellAttribute, string>
{
{ CellAttribute.Address, "address" }
};
workbook.Save(outputStream, options);
| 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. |