Item

TimelineCollection indexer (1 of 2)

按索引获取时间线。

public Timeline this[int index] { get; }

例子


[C#]

//通过索引获取时间线。
Timeline objByIndex = sheet.Timelines[0];

也可以看看


TimelineCollection indexer (2 of 2)

通过时间线的名称获取时间线。

public Timeline this[string name] { get; }

例子


[C#]

//通过时间线的名称获取时间线。
Timeline objByName = sheet.Timelines["date"];

也可以看看