DrawingItemEvent
The DrawingItemEvent
interface extends the Event interface and represents an event bound to a DrawingItem.
interface DrawingItemEvent extends Event {
targetItem: DrawingItem,
itemClientX: number;
itemClientY: number;
itemPageX: number;
itemPageY: number;
}
targetItem
The drawing item that is the target of the event.
See Also
itemClientX
The X coordinate of the item relative to the viewpoint of the browser window..
itemClientY
The Y coordinate of the item relative to the viewpoint of the browser window..
itemPageX
The X coordinate of the item relative to the entire document (the webpage content).
itemPageY
The Y coordinate of the item relative to the entire document (the webpage content).