IModernComment

IModernComment interface

表示幻灯片上的注释。

public interface IModernComment : IComment

特性

姓名描述
AsIComment { get; }允许获取基本 IComment 接口。 只读IComment
Shape { get; }返回与注释关联的形状。 只读IShape
Status { get; set; }返回或设置评论的状态。 读/写ModernCommentStatus
TextSelectionLength { get; set; }如果注释与自选图形关联,则返回或设置文本框中的文本选择长度。 读/写Int32。
TextSelectionStart { get; set; }如果注释与自选图形关联,则返回或设置文本框架中文本选择的起始位置。 读/写Int32。

例子

[C#]
using (Presentation pres = new Presentation())
{
    ICommentAuthor newAuthor = pres.CommentAuthors.AddAuthor("Some Author", "SA");
    IModernComment modernComment = newAuthor.Comments.AddModernComment("This is modern comment", pres.Slides[0], null, new PointF(100, 100), DateTime.Now);

    pres.Save(outPptxFileName, SaveFormat.Pptx);
}

也可以看看