[]
Gets or sets the scenario name.
The returned value is the scenario name used to identify the scenario in the worksheet.
string Name { get; set; }
Property Name As String
worksheet.Range["B2:B3"].Value = new object[,] {{10}, {20}};
IScenario scenario = worksheet.Scenarios.Add("Sales Plan", worksheet.Range["B2:B3"], null);
scenario.Name = "Updated Sales Plan";
string name = scenario.Name;