Triggered after the Next method is executed.
Supported platforms: Windows only
Namespace: AcStMgr
Assembly: AcStMgr.tlb
For internal use only.
VB.NET:
RetVal = object.Done()
C#:
RetVal = object.Done();
Type: AcStErrorIterator object
The object this method applies to.
VB.NET:
Public Function Done() As Boolean _
Implements IAcStPlugin2.Done
Return ...
End Function
C#:
public bool Done()
{
return ...;
}
Type: IAcStPlugin2 interface
The interface this method applies to.
Type: Boolean
No additional remarks.
Releases: AutoCAD 2004 and later
VB.NET:
Not available
C#:
Not available
VB.NET:
Public Function PlugIn_Done() As Boolean Implements IAcStPlugin2.Done
Return IsNothing(m_pError)
End Function
C#:
public bool PlugIn_Done()
{
return (m_pError == null);
}
bool IAcStPlugin2.Done()
{
return PlugIn_Done();
}