[]
A collection of custom workbook views.
public interface ICustomViews : IEnumerable<ICustomView>, IEnumerable
Returns the number of objects in the collection (read-only).
int Count { get; }
Gets the custom workbook view using the name.
ICustomView this[string viewName] { get; }
viewName
stringThe custom workbook view's name.
Creates a new custom view.
ICustomView Add(string viewName, bool printSettings, bool rowColSettings)
viewName
stringThe name of the new view.
printSettings
boolTrue to include print settings in the custom view
rowColSettings
boolTrue to include settings for hidden rows and columns (including filter information) in the custom view.
The new custom view.