[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICustomViews

Interface ICustomViews

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

A collection of custom workbook views.

public interface ICustomViews : IEnumerable<ICustomView>, IEnumerable
Inherited Members
System.Collections.Generic.IEnumerable<GrapeCity.Documents.Excel.ICustomView>.GetEnumerator()

Properties

Count

Returns the number of objects in the collection (read-only).

int Count { get; }

Property Value

int

this[string]

Gets the custom workbook view using the name.

ICustomView this[string viewName] { get; }

Parameters

viewName string

The custom workbook view's name.

Property Value

ICustomView

Methods

Add(string, bool, bool)

Creates a new custom view.

ICustomView Add(string viewName, bool printSettings, bool rowColSettings)

Parameters

viewName string

The name of the new view.

printSettings bool

True to include print settings in the custom view

rowColSettings bool

True to include settings for hidden rows and columns (including filter information) in the custom view.

Returns

ICustomView

The new custom view.