ICommentCollection

ICommentCollection interface

表示一个作者的评论集合。

public interface ICommentCollection : IGenericCollection<IComment>

特性

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

方法

姓名描述
AddComment(string, ISlide, PointF, DateTime)在集合末尾添加新评论。
AddModernComment(string, ISlide, IShape, PointF, DateTime)在集合末尾添加新的现代注释。
Clear()从集合中删除所有评论。
InsertComment(int, string, ISlide, PointF, DateTime)在指定索引处向集合插入新注释。
InsertModernComment(int, string, ISlide, IShape, PointF, DateTime)将新的现代注释插入到指定索引处的集合中。
Remove(IComment)删除集合中第一次出现的指定注释。
RemoveAt(int)删除集合中指定索引处的元素。
ToArray()创建并返回一个包含所有注释的数组。
ToArray(int, int)创建并返回一个包含指定范围内所有注释的数组。

也可以看看