Returns the current error being checked.
Supported platforms: Windows only
Namespace: AcStMgr
Assembly: AcStMgr.tlb
For internal use only.
VB.NET:
RetVal = object.GetError()
C#:
RetVal = object.GetError();
Type: AcStErrorIterator object
The object this method applies to.
VB.NET:
Public Function GetError() As AcStError _
Implements IAcStPlugin2.GetError
Return ...
End Function
C#:
public AcStError GetError()
{
return ...;
}
Type: IAcStPlugin2 interface
The object this method applies to.
No additional remarks.
Releases: AutoCAD 2004 and later
VB.NET:
Not available
C#:
Not available
VB.NET:
Public Function GetError() As AcStError Implements IAcStPlugin2.GetError
Return m_pError
End Function
C#:
public AcStError GetError()
{
return m_pError;
}