[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.HtmlSaveOptions.TableCssId

TableCssId Property

TableCssId

Gets or sets the prefix of the type CSS names, such as tr and td, that are contained in the table element with the specific TableCssId attribute.

The default value is null.

Declaration
public string TableCssId { get; set; }
Public Property TableCssId As String
Examples
HtmlSaveOptions options = new HtmlSaveOptions();
options.TableCssId = "salesTable";
string tableCssId = options.TableCssId;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);