BeginDoubleClick 事件 (ActiveX) 
在用户双击图形中的对象后触发。 支持的平台:仅限 Windows 签名VBA: object.BeginDoubleClick(PickPoint) 
 言论显示模式对话框时不会触发任何事件。 例子VBA: Private Sub AcadDocument_BeginDoubleClick(ByVal PickPoint As Variant)
    ' This example intercepts a drawing BeginDoubleClick event.
    '
    ' This event is triggered when a drawing receives
    ' a double mouse click in its working area.
    '
    ' To trigger this example event: Position the mouse over the working area of
    ' a drawing window and double-click the left mouse button
    ' Use the "PickPoint" variable to determine where on the drawing the user clicked
    MsgBox "A drawing has just been double-clicked at:" & vbCrLf & _
            PickPoint(0) & vbCrLf & _
            PickPoint(1) & vbCrLf & _
            PickPoint(2)
End Sub
可视化 LISP: Not available  | 
|Archiver|CAD开发者社区
( 苏ICP备2022047690号-1   苏公网安备32011402011833)
GMT+8, 2025-11-4 14:33
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.