[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITable.ShowTableStyleRowStripes

ShowTableStyleRowStripes Property

ShowTableStyleRowStripes

Gets or sets whether banded rows are displayed for this ITable.

When this property is true, the applied table style uses alternating row formatting.

Declaration
bool ShowTableStyleRowStripes { get; set; }
Property ShowTableStyleRowStripes As Boolean
Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Name", "Value"},
    {"Tea", 10},
    {"Coffee", 12}
};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:B3"], true);
bool showRowStripes = table.ShowTableStyleRowStripes;