[]
Gets the number of table style elements in this collection.
This property returns the number of ITableStyleElement objects
available through the current ITableStyleElements collection.
int Count { get; }
ReadOnly Property Count As Integer
ITableStyle tableStyle = workbook.TableStyles.Add("CustomStyle");
ITableStyleElements elements = tableStyle.TableStyleElements;
int count = elements.Count;