[]
Gets or sets the stripe size for this banded table style element.
int StripeSize { get; set; }
Property StripeSize As Integer
ITableStyle tableStyle = workbook.TableStyles.Add("StripedStyle");
ITableStyleElement firstRowStripe = tableStyle.TableStyleElements[TableStyleElementType.FirstRowStripe];
firstRowStripe.StripeSize = 2;
int stripeSize = firstRowStripe.StripeSize;