A collection of instances in a workbook.
Inheritance
object
Implements
- IList<CustomView>
- ICollection<CustomView>
- IEnumerable<CustomView>
- IEnumerable
Properties
Section titled "Properties"Count
Section titled "Count"Gets the number of custom views in the collection.
public int Count { get; } this[int]
Section titled "this[int]"Gets the custom view at the specified index.
public CustomView this[int index] { get; } Methods
Section titled "Methods"Add(string, bool, bool)
Section titled "Add(string, bool, bool)"Adds a new custom view to the collection.
public CustomView Add(string name, bool savePrintOptions, bool saveHiddenRowsAndColumns) Parameters
- name:
string - savePrintOptions:
bool - saveHiddenRowsAndColumns:
bool
Returns any
Clear()
Section titled "Clear()"Clears all custom views from the collection.
public void Clear() Returns any
Contains(CustomView)
Section titled "Contains(CustomView)"Determines whether a custom view is in this collection.
public bool Contains(CustomView customView) Parameters
- customView:
CustomView
Returns any
Remove(CustomView)
Section titled "Remove(CustomView)"Removes the specified custom view from the collection.
public bool Remove(CustomView customView) Parameters
- customView:
CustomView
Returns any
RemoveAt(int)
Section titled "RemoveAt(int)"Removes the custom view at the specified index from the collection.
public void RemoveAt(int index) Parameters
- index:
int