Spread Windows Forms 13.0 Product Documentation
FarPoint.Excel Assembly / FarPoint.Excel Namespace / ExcelWarningList Class / Count Property
Example


In This Topic
    Count Property (ExcelWarningList)
    In This Topic
    Gets the number of warnings in the list of Excel file operation warnings.
    Syntax
    'Declaration
     
    Public ReadOnly Property Count As Integer
    'Usage
     
    Dim instance As ExcelWarningList
    Dim value As Integer
     
    value = instance.Count
    public int Count {get;}

    Property Value

    Integer number of warnings in the list
    Example
    This example gets the warning list.
    FarPoint.Excel.ExcelWarningList warningList = new FarPoint.Excel.ExcelWarningList();
                fpSpread1.OpenExcel("c:\\test.xlsx", FarPoint.Excel.ExcelOpenFlags.NoFlagsSet, warningList);
                if (warningList.Count > 0)
                    for (int i = 0; i < warningList.Count; i++)
                        MessageBox.Show(warningList[i].Message);
    Dim warningList As New FarPoint.Excel.ExcelWarningList()
            fpSpread1.OpenExcel("c:\test.xlsx", FarPoint.Excel.ExcelOpenFlags.NoFlagsSet, warningList)
            If warningList.Count > 0 Then
                For i As Integer = 0 To warningList.Count - 1
                    MessageBox.Show(warningList(i).Message)
                Next
            End If
    See Also