AddModernComment
ICommentCollection.AddModernComment method
在集合末尾添加新的现代注释。
public IModernComment AddModernComment(string text, ISlide slide, IShape shape, PointF position,
DateTime creationTime)
范围 | 类型 | 描述 |
---|---|---|
text | String | 新现代评论的纯文本。 |
slide | ISlide | 在演示文稿中滑动以添加新的现代评论。 |
shape | IShape | 幻灯片上与新的现代评论相关联的形状。 |
position | PointF | 幻灯片上添加新现代评论的位置。 |
creationTime | DateTime | 现代评论创建时间。 |
返回值
添加了现代评论。
例子
[C#]
using (Presentation pres = new Presentation())
{
ICommentAuthor newAuthor = pres.CommentAuthors.AddAuthor("Some Author", "SA");
newAuthor.Comments.AddModernComment("This is modern comment", pres.Slides[0], null, new PointF(100, 100), DateTime.Now);
pres.Save(outPptxFileName, SaveFormat.Pptx);
}
也可以看看
- interface IModernComment
- interface ISlide
- interface IShape
- interface ICommentCollection
- 命名空间 Aspose.Slides
- 部件 Aspose.Slides