[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IScenario.Hidden

Hidden Property

Hidden

Gets or sets whether the scenario is hidden.

This property indicates whether the scenario is marked as hidden.

Declaration
bool Hidden { get; set; }
Property Hidden As Boolean
Examples
worksheet.Range["B2:B3"].Value = new object[,] {{10}, {20}};
IScenario scenario = worksheet.Scenarios.Add("Sales Plan", worksheet.Range["B2:B3"], null);
scenario.Hidden = true;
bool hidden = scenario.Hidden;