ComponentOne Excel for UWP
C1.UWP.Excel Assembly / C1.Xaml.Excel Namespace / XLCommentCollection Class / Add Method / Add(Int32,Int32,String,String,Boolean) Method
Index of the top row in the comment.
Index of the left column in the comment.
The author of the comment.
The text of the comment.
Flag indicating whether to convert author and text to RTF format.

In This Topic
    Add(Int32,Int32,String,String,Boolean) Method
    In This Topic
    Creates an XLComment object and appends it to the collection.
    Syntax
    'Declaration
     
    Public Overloads Function Add( _
       ByVal rowIndex As System.Integer, _
       ByVal colIndex As System.Integer, _
       ByVal author As System.String, _
       ByVal text As System.String, _
       ByVal toRtf As System.Boolean _
    ) As XLComment
    public XLComment Add( 
       System.int rowIndex,
       System.int colIndex,
       System.string author,
       System.string text,
       System.bool toRtf
    )

    Parameters

    rowIndex
    Index of the top row in the comment.
    colIndex
    Index of the left column in the comment.
    author
    The author of the comment.
    text
    The text of the comment.
    toRtf
    Flag indicating whether to convert author and text to RTF format.

    Return Value

    A reference to the object if it was successfully added to the collection, or null if the object could not be added to the collection (usually because it overlaps another comment already in the collection).
    See Also