Gets the number of error and warning messages that have been set on this object.

Namespace:  Asi.iBO
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public int ErrorsCount { get; }
Visual Basic (Declaration)
Public ReadOnly Property ErrorsCount As Integer
Visual C++
public:
property int ErrorsCount {
	int get ();
}

Field Value

The number of error AND warning messages that have been set on this object.

Remarks

This is the same as Errors.Count and contains both error and warning messages. To get just error messages use Errors.ErrorCount.

See Also