[]
Represents a single style that can be applied to a table.
public interface ITableStyle
Gets whether the style is a built-in style (read-only).
bool BuiltIn { get; }
Returns the name of the object (read-only).
string Name { get; }
Gets or sets whether the specified table style is shown as available in the pivot styles gallery.
bool ShowAsAvailablePivotStyle { get; set; }
Gets or sets whether the specified table style is shown as available in the slicer styles gallery.
bool ShowAsAvailableSlicerStyle { get; set; }
Gets or sets a table style shown as available in the table styles gallery (read or write).
bool ShowAsAvailableTableStyle { get; set; }
Returns the ITableStyleElements object (read-only).
ITableStyleElements TableStyleElements { get; }
Deletes the ITableStyle object.
void Delete()
Duplicates the ITableStyle object and returns a reference to the new copy.
ITableStyle Duplicate(string newName = null)
newName
stringThe name of the new table style.