[]
Gets the custom workbook view using the name.
ICustomView this[string viewName] { get; }
ReadOnly Default Property Item(viewName As String) As ICustomView
| Type | Name | Description |
|---|---|---|
| string | viewName | The custom workbook view's name. |
workbook.CustomViews.Add("PrintView", true, false);
ICustomView customView = workbook.CustomViews["PrintView"];
customView.Show();