Class Hierarchy
IAcPostDrop
File
ipstdrop.idl
Description
This interface is implemented by the components that want to handle right mouse drag and drop of the content provided by them in the DesignCenter palette. The components may or may not handle the dropping of their objects in AutoCAD. The reply of the component to QueryDoDrop indicates that the default processing will or will not occur. If the component wants to handle the drop, this interface allows two situations:
- The component wants an immediate action for the drop. Then it will run the drop code from PreparePostDrop method and will return a value indicating that the drop is done.
- The component wants to present a menu for the user to choose an action. PreparePostDrop will then return a value indicating the drop is not done yet. In this situation, QueryContextMenu will be called, allowing the component to supply a menu. The user selection will be sent to the component via InvokeCommand method.
Finally, in both situations where PreparePostDrop method has been called, EndPostDrop is called to let the component perform any necessary clean up.