注销先前已注册的图纸集回调通知处理程序。 Namespace:传输利布 组装:acETransmit20.tlb 签名VB.NET: object.cancelSheetSetNotification pHandler C#: object.cancelSheetSetNotification(pHandler);
返回值(RetVal)无返回值。 言论没有额外的评论。 发布信息释放:AutoCAD 2005 及更高版本 历史
例子VB.NET: ' Notification handlers
Private Shared g_dbHandler As New MyTransDbNotifier
Private Shared g_fileHandler As New MyTransFileNotifier
Private Shared g_ssmHandler As New MyTransSSMNotifier
' Custom command that subscribes to eTransmit notifications
' Works with the transmittal API and ETRANSMIT/ARCHIVE commands
<CommandMethod("ETNotificationsStart")> _
Public Shared Sub ETNotificationsStart()
' Add the handlers
g_tro.subscribeToAddFileNotification(g_fileHandler)
g_tro.subscribeDatabaseNotification(g_dbHandler)
g_tro.subscribeSheetSetNotification(g_ssmHandler)
End Sub
' Custom command that unsubscribes to eTransmit notifications
' Works with the transmittal API and ETRANSMIT/ARCHIVE commands
<CommandMethod("ETNotificationsEnd")> _
Public Shared Sub ETNotificationsEnd()
' Remove the handlers
g_tro.cancelSubscriptionToAddFileNotification(g_fileHandler)
g_tro.cancelDatabaseNotification(g_dbHandler)
g_tro.cancelSheetSetNotification(g_ssmHandler)
End Sub
C#: // Notification handlers
private static MyTransDbNotifier g_dbHandler = new MyTransDbNotifier();
private static MyTransFileNotifier g_fileHandler = new MyTransFileNotifier();
private static MyTransSSMNotifier g_ssmHandler = new MyTransSSMNotifier();
// Custom command that subscribes to eTransmit notifications
// Works with the transmittal API and ETRANSMIT/ARCHIVE commands
[CommandMethod("ETNotificationsStart")]
public static void ETNotificationsStart()
{
// Add the handlers
g_tro.subscribeToAddFileNotification(g_fileHandler);
g_tro.subscribeDatabaseNotification(g_dbHandler);
g_tro.subscribeSheetSetNotification(g_ssmHandler);
}
// Custom command that unsubscribes to eTransmit notifications
// Works with the transmittal API and ETRANSMIT/ARCHIVE commands
[CommandMethod("ETNotificationsEnd")]
public static void ETNotificationsEnd()
{
// Remove the handlers
g_tro.cancelSubscriptionToAddFileNotification(g_fileHandler);
g_tro.cancelDatabaseNotification(g_dbHandler);
g_tro.cancelSheetSetNotification(g_ssmHandler);
}
|
|Archiver|CAD开发者社区
( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2025-10-29 06:06
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.