[]
Gets or sets whether the scenario is hidden.
This property indicates whether the scenario is marked as hidden.
bool Hidden { get; set; }
Property Hidden As Boolean
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;