[]
Represents the collection of IScenario objects in the worksheet.
public interface IScenarios : IEnumerable
Returns the number of objects in the collection.
int Count { get; }
Gets the scenario using the index.
IScenario this[int index] { get; }
index
intThe index.
Gets the scenario using the name.
IScenario this[string name] { get; }
name
stringThe scenario name.
Creates a new scenario and adds it to the list of scenarios in the current worksheet.
IScenario Add(string name, IRange changingCells, List<object> values = null, string comment = null, bool locked = true, bool hidden = false)
name
stringThe scenario name.
changingCells
IRangeA Range object that refers to the changing cells for the scenario.
values
List<object>A list that contains the scenario values for the cells in ChangingCells. If this argument is omitted, the scenario values are assumed to be the current values in the cells in ChangingCells.
comment
stringA string that specifies comment text for the scenario. If this argument is omitted, the author's name(Document Solutions for Excel) and date are automatically added as the comment text.
locked
boolTrue to lock the scenario to prevent changes. The default value is True.
hidden
boolTrue to hide the scenario. The default value is False.