[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Workbook.CustomViews

CustomViews Property

CustomViews

Returns the custom views of the workbook.

Declaration
public ICustomViews CustomViews { get; }
Public ReadOnly Property CustomViews As ICustomViews
Implements
Examples
worksheet.Range["A1"].Value = "Name";
ICustomViews customViews = workbook.CustomViews;
customViews.Add("Normal", true, true);
ICustomView customView = workbook.CustomViews["Normal"];
customView.Show();