Triggered after the processing of a database.
Supported platforms: Windows only
Namespace: TRANSMITTALLib
Assembly: acETransmit20.tlb
VB.NET:
Friend Class custom_class_name
Implements TransmittalDatabaseNotificationHandler
Public Function postDatabaseProcessing(pDatabase As Object, _
pFile As TransmittalFile, _
pTransmit As TransmittalOperation) _
As Integer _
Implements ITransmittalDatabaseNotificationHandler.postDatabaseProcessing
...
End Function
End Class
C#:
internal class custom_class_name : TransmittalDatabaseNotificationHandler
{
public int postDatabaseProcessing(object pDatabase,
TransmittalFile pFile,
TransmittalOperation pTransmit)
{
...
return RetVal;
}
}
The name of the custom class.
Access: Input-only
Type: Object
Pointer to the AcadDatabase object that was processed.
Access: Input-only
Type: TransmittalFile object
Pointer to the TransmittalFile object that contains information about the drawing file in which the database is stored.
Access: Input-only
Type: TransmittalOperation object
Pointer to the TransmittalOperation object that represents the transmittal set in which the drawing file is contained.
Type: Integer
No additional remarks.
Releases: AutoCAD 2005 and later
VB.NET:
' Custom class used to monitor the processing of a drawing
Friend Class MyTransDbNotifier
Implements TransmittalDatabaseNotificationHandler
Public Function postDatabaseProcessing(pDatabase As Object, _
pFile As TRANSMITTALLib.TransmittalFile, _
pTransmit As TRANSMITTALLib.TransmittalOperation) _
As Integer _
Implements TRANSMITTALLib. _
ITransmittalDatabaseNotificationHandler.postDatabaseProcessing
Application.DocumentManager.MdiActiveDocument.Editor. _
WriteMessage(Environment.NewLine & "Database post processing: " & pFile.sourcePath)
Return 1
End Function
End Class
C#:
// Custom class used to monitor the processing of a drawing
internal class MyTransDbNotifier : TransmittalDatabaseNotificationHandler
{
public int postDatabaseProcessing(object pDatabase, TRANSMITTALLib.TransmittalFile pFile,
TRANSMITTALLib.TransmittalOperation pTransmit)
{
Application.DocumentManager.MdiActiveDocument.Editor.
WriteMessage(Environment.NewLine + "Database post processing: " + pFile.sourcePath);
return 1;
}
}