[]
Gets or sets whether banded rows are displayed for this ITable.
When this property is true, the applied table style uses alternating
row formatting.
bool ShowTableStyleRowStripes { get; set; }
Property ShowTableStyleRowStripes As Boolean
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;