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)将节及其幻灯片从集合中移动到指定位置。

另见