[]
Gets or sets whether the column stripe table style is applied to this ITable.
When this property is true, the applied table style uses alternating
formatting for table columns.
bool ShowTableStyleColumnStripes { get; set; }
Property ShowTableStyleColumnStripes As Boolean
worksheet.Range["A1:C3"].Value = new object[,] {
{"Name", "Q1", "Q2"},
{"Tea", 100, 120},
{"Coffee", 90, 110}
};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:C3"], true);
table.ShowTableStyleColumnStripes = true;
bool showColumnStripes = table.ShowTableStyleColumnStripes;