[]
Gets the IScenarios object that represents the collection of What-If analysis scenarios in the worksheet.
Use the returned collection to add, retrieve, and iterate worksheet scenarios.
IScenarios Scenarios { get; }
ReadOnly Property Scenarios As IScenarios
worksheet.Range["C4"].Value = 0.8;
IScenarios scenarios = worksheet.Scenarios;
scenarios.Add("80% highest", worksheet.Range["C4"]);
IScenario scenario = scenarios["80% highest"];