C# Class ExoMerge.Aspose.Extensions.DocumentBuilderExtensions

Mostrar archivo Open project: vc3/ExoMerge

Public Methods

Method Description
InsertComment ( this builder, string text ) : Comment

Insert a comment into the document at the current paragraph.

InsertComment ( this builder, string text, string author, string initials, System.DateTime date ) : Comment

Insert a comment into the document at the current paragraph.

Private Methods

Method Description
InsertComment ( DocumentBuilder builder, Comment comment, string text ) : void

Method Details

InsertComment() public static method

Insert a comment into the document at the current paragraph.
public static InsertComment ( this builder, string text ) : Comment
builder this The document builder to use to insert the comment.
text string The text of the comment.
return Comment

InsertComment() public static method

Insert a comment into the document at the current paragraph.
public static InsertComment ( this builder, string text, string author, string initials, System.DateTime date ) : Comment
builder this The document builder to use to insert the comment.
text string The text of the comment.
author string The author's name.
initials string The author's initials.
date System.DateTime The date of the comment.
return Comment