Replies
Contenuti
[
Nascondere
]Comment.Replies property
Restituisce una raccolta diComment
oggetti che sono figli immediati del commento specificato.
public CommentCollection Replies { get; }
Esempi
Mostra come stampare tutti i commenti di un documento e le relative risposte.
Document doc = new Document(MyDir + "Comments.docx");
NodeCollection comments = doc.GetChildNodes(NodeType.Comment, true);
// Se un commento non ha un antenato, è un commento di "livello superiore" invece di un commento di tipo risposta.
// Stampa tutti i commenti di livello superiore insieme alle eventuali risposte.
foreach (Comment comment in comments.OfType<Comment>().Where(c => c.Ancestor == null))
{
Console.WriteLine("Top-level comment:");
Console.WriteLine($"\t\"{comment.GetText().Trim()}\", by {comment.Author}");
Console.WriteLine($"Has {comment.Replies.Count} replies");
foreach (Comment commentReply in comment.Replies)
{
Console.WriteLine($"\t\"{commentReply.GetText().Trim()}\", by {commentReply.Author}");
}
Console.WriteLine();
}
Guarda anche
- class CommentCollection
- class Comment
- spazio dei nomi Aspose.Words
- assemblea Aspose.Words