Triggered when a new node has been added to the files graph of the transmittal set.
Supported platforms: Windows only
Namespace: TRANSMITTALLib
Assembly: AcETransmit19.tlb
VB.NET:
Friend Class custom_class_name Implements TransmittalAddFileNotificationHandler Public Sub endFilesGraphCreation(pTransmit As TRANSMITTALLib.TransmittalOperation) _ Implements TRANSMITTALLib.ITransmittalAddFileNotificationHandler.endFilesGraphCreation ... End Sub End Class
C#:
internal class custom_class_name : TransmittalAddFileNotificationHandler { public void endFilesGraphCreation(TRANSMITTALLib.TransmittalOperation pTransmit) { ... } }
The name of the custom class.
Access: Input-only
Type: TransmittalOperation object
Pointer to the TransmittalOperation object that represents the transmittal set in which a new node has been added to its files graph.
No return value.
No additional remarks.
Releases: AutoCAD 2004 and later
VB.NET:
' Custom class used to monitor files being added to the transmittal package Friend Class MyTransFileNotifier Implements TransmittalAddFileNotificationHandler Public Sub endFilesGraphCreation(pTransmit As TRANSMITTALLib.TransmittalOperation) _ Implements TRANSMITTALLib. _ ITransmittalAddFileNotificationHandler.endFilesGraphCreation Application.DocumentManager.MdiActiveDocument.Editor. _ WriteMessage(Environment.NewLine + "File graph creation ended.") End Sub End Class
C#:
// Custom class used to monitor files being added to the transmittal package internal class MyTransFileNotifier : TransmittalAddFileNotificationHandler { public void endFilesGraphCreation(TRANSMITTALLib.TransmittalOperation pTransmit) { Application.DocumentManager.MdiActiveDocument.Editor. WriteMessage(Environment.NewLine + "File graph creation ended."); } }