IModernComment

IModernComment interface

Representa un comentario en una diapositiva.

public interface IModernComment : IComment

Propiedades

NombreDescripción
AsIComment { get; }Permite obtener la interfaz base IComment. Solo lecturaIComment .
Shape { get; }Devuelve una forma asociada con el comentario. Solo lecturaIShape .
Status { get; set; }Devuelve o establece el estado del comentario. Lectura/escrituraModernCommentStatus .
TextSelectionLength { get; set; }Devuelve o establece la longitud de la selección de texto en el marco de texto si el comentario asociado con AutoShape. Lectura/escrituraInt32 .
TextSelectionStart { get; set; }Devuelve o establece la posición inicial de la selección de texto en el marco de texto si el comentario asociado con AutoShape. Lectura/escrituraInt32 .

Ejemplos

[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);
}

Ver también