[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITableStyleElement.StripeSize

StripeSize Property

StripeSize

Gets or sets the stripe size for this banded table style element.

Declaration
int StripeSize { get; set; }
Property StripeSize As Integer
Examples
ITableStyle tableStyle = workbook.TableStyles.Add("StripedStyle");
ITableStyleElement firstRowStripe = tableStyle.TableStyleElements[TableStyleElementType.FirstRowStripe];
firstRowStripe.StripeSize = 2;
int stripeSize = firstRowStripe.StripeSize;