[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorkbook.CustomViews

CustomViews Property

CustomViews

Returns the custom views of the workbook.

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