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

另见