ISectionCollection

ISectionCollection 接口

表示一个节的集合。

public interface ISectionCollection : IGenericCollection<ISection>

属性

名称描述
Item { get; }获取指定索引处的元素。只读 ISection

方法

名称描述
AddEmptySection(string, int)在集合的指定位置添加空节。
AddSection(string, ISlide)从特定幻灯片开始添加新节。
AppendEmptySection(string)在集合的末尾添加空节。
Clear()从集合中移除所有节。
IndexOf(ISection)返回指定节在集合中的索引。
RemoveSection(ISection)移除节。节中包含的幻灯片将被合并到前一节。
RemoveSectionWithSlides(ISection)移除节及其包含的幻灯片。
ReorderSectionWithSlides(ISection, int)将节及其幻灯片从集合中移动到指定位置。

另见