FarPoint.Excel Assembly > FarPoint.Excel Namespace > ExcelWarningList Class : Count Property |
'Declaration Public ReadOnly Property Count As Integer
'Usage Dim instance As ExcelWarningList Dim value As Integer value = instance.Count
public int Count {get;}
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
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10