[]
Gets the number of table styles in the collection.
This count includes the table styles currently available in the workbook's ITableStyleCollection.
int Count { get; }
ReadOnly Property Count As Integer
ITableStyleCollection tableStyles = workbook.TableStyles;
tableStyles.Add("CustomTableStyle");
int count = tableStyles.Count;