AddModernComment
CommentCollection.AddModernComment method
Neuen modernen Kommentar am Ende einer Sammlung hinzufügen.
public IModernComment AddModernComment(string text, ISlide slide, IShape shape, PointF position,
DateTime creationTime)
Parameter | Typ | Beschreibung |
---|---|---|
text | String | Klartext eines neuen modernen Kommentars. |
slide | ISlide | Schieben Sie eine Präsentation hinein, wo Sie einen neuen modernen Kommentar hinzufügen können. |
shape | IShape | Form auf einer Folie, der ein neuer moderner Kommentar zugeordnet ist. |
position | PointF | Position auf einer Folie, an der ein neuer moderner Kommentar hinzugefügt werden soll. |
creationTime | DateTime | Zeit einer modernen Kommentarerstellung. |
Rückgabewert
Moderner Kommentar hinzugefügt.
Beispiele
[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);
}
Siehe auch
- interface IModernComment
- interface ISlide
- interface IShape
- class CommentCollection
- namensraum Aspose.Slides
- Montage Aspose.Slides