VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Office.OpenXml.Editor.Xlsx Namespace / XlsxDocumentSheet Class / SetCommentIsVisible(Int32,Int32,Boolean) Method
Syntax Exceptions Requirements SeeAlso
In This Topic
    SetCommentIsVisible(Int32,Int32,Boolean) Method (XlsxDocumentSheet)
    In This Topic
    Sets the visibility status of comment.
    Syntax
    'Declaration
    
    Public Sub SetCommentIsVisible( _
    ByVal columnIndex
    The index of column that contains cell.
    As System.Int32, _
    ByVal rowIndex
    The index of row that contains cell.
    As System.Int32, _
    ByVal isVisible
    A value indicating whether comment is visible.
    As Boolean _
    )
    public void SetCommentIsVisible(
    System.Int32 columnIndex,
    System.Int32 rowIndex,
    bool isVisible
    )
    public: void SetCommentIsVisible(
    System.Int32 columnIndex,
    System.Int32 rowIndex,
    bool isVisible
    )
    public:
    void SetCommentIsVisible(
    System.Int32 columnIndex,
    System.Int32 rowIndex,
    bool isVisible
    )

    Parameters

    columnIndex
    The index of column that contains cell.
    rowIndex
    The index of row that contains cell.
    isVisible
    A value indicating whether comment is visible.
    Exceptions
    ExceptionDescription
    Thrown if columnIndex is less than zero -or- columnIndex is equal to or greater 16383.
    Thrown if rowIndex is less than zero -or- rowIndex is equal to or greater 1048575.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also