TimelineCollection.Item

TimelineCollection indexer (1 of 2)

Gets the Timeline by index.

public Timeline this[int index] { get; }

Examples


[C#]

//Get the Timeline by index.
Timeline objByIndex = sheet.Timelines[0];

See Also


TimelineCollection indexer (2 of 2)

Gets the Timeline by Timeline’s name.

public Timeline this[string name] { get; }

Examples


[C#]

//Get the Timeline by Timeline's name.
Timeline objByName = sheet.Timelines["date"];

See Also