[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITable.ShowTableStyleFirstColumn

ShowTableStyleFirstColumn Property

ShowTableStyleFirstColumn

Gets or sets whether the first-column table style element is applied.

This property indicates whether the first-column special style element from the applied table style is used for the current ITable; it does not control whether the entire table style is applied to the first column.

Declaration
bool ShowTableStyleFirstColumn { get; set; }
Property ShowTableStyleFirstColumn As Boolean
Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Name", "Amount"},
    {"Apple", 100},
    {"Orange", 200}
};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:B3"], true);
table.ShowTableStyleFirstColumn = true;
bool showFirstColumn = table.ShowTableStyleFirstColumn;