_DMcGraphOverlayEvents Interface |
![]() |
Namespace: MediaCy.IQL.Display.Overlays
Public Interface _DMcGraphOverlayEvents
The _DMcGraphOverlayEvents type exposes the following members.
Name | Description | |
---|---|---|
![]() | AboutToBeDestroyed | This McOverlay instance is in the process of being destroyed. |
![]() | EditClear | This Object is about to be deleted as part of an
EditClear or EditCut operation. |
![]() | EditCopy | This object is going to be copied to the clipboard. |
![]() | EditPaste | This object was just pasted from the clipboard. |
![]() | MoveSelected | The selected object(s) are about to be moved or have just been moved. |
![]() | ObjectAboutToBeDeleted | This Object is about to be deleted by the user (using the DEL key). |
![]() | ObjectAboutToBeDestroyed | This Object is about to be destroyed by any means. A previous
ObjectAboutToBeDeleted or EditClear event may have been fired for
this object if it was being deleted during user editing or an EditClear/Cut
respectively. |
![]() | ObjectCreated | This object was just created. |
![]() | ObjectDeselected | Object has been deselected. |
![]() | ObjectDragged | This object is being dragged. |
![]() | ObjectHandleDragged | One of this object's handles is being dragged. |
![]() | ObjectHandleMoved | One of this object's handles was moved. |
![]() | ObjectMoved | This Object was moved. |
![]() | ObjectPropertyChanged | This Object's property identified by propertyId was
changed. Or an attempt to edit properties could not be honored. |
![]() | ObjectSelected | Object was just selected. |
![]() | ObjectUsedAsDefault | This Object properties were copied to its template. |
![]() | ToolDeselected | A tool was just deselected, and is not active anymore. If any tool was
active, this event is always sent to notify clients of the overlay
that selected the previously active tool. It is also sent to the
notify clients of the overlay getting a newly selected tool or no tool. |
![]() | ToolSelected | A tool was selected as the new active tool. |
Dim With Events overlay As McOverlay Sub AttachToAnnotations Set overlay = McEngine.ActiveImage.Annotations End Sub Sub overlay_ObjectSelected(McGraphObj Object) Debug.Print "Object Selected" End Sub