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