Excel for WPF | ComponentOne
C1.WPF.Excel Namespace / XLComment Class / XLComment Constructor
Row that the comment applies to.
Column that the comment applies to.
Comment author.
Comment content.

In This Topic
    XLComment Constructor
    In This Topic
    Creates an instance of a XLComment object containing a specified range.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal row As Integer, _
       ByVal col As Integer, _
       ByVal author As String, _
       ByVal text As String _
    )
    public XLComment( 
       int row,
       int col,
       string author,
       string text
    )

    Parameters

    row
    Row that the comment applies to.
    col
    Column that the comment applies to.
    author
    Comment author.
    text
    Comment content.
    See Also