ComponentOne Excel for UWP
C1.UWP.Excel Assembly / C1.Xaml.Excel Namespace / XLCommentCollection Class / Add Method / Add(Int32,Int32,String,String) Method
Index of the top row in the comment.
Index of the left column in the comment.
The author of the comment.
The context of the comment.

In This Topic
    Add(Int32,Int32,String,String) 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 _
    ) As XLComment
    public XLComment Add( 
       System.int rowIndex,
       System.int colIndex,
       System.string author,
       System.string text
    )

    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 context of the comment.

    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