Office.DragoverEventData interface
Represents the DragAndDropEventArgs.dragAndDropEventData
object when messages or file attachments are dragged over an add-in's task pane.
Remarks
To learn more about the drag-and-drop feature and how to implement it across various Outlook clients, see Drag and drop messages and attachments into the task pane of an Outlook add-in.
Properties
pageX | Gets the x-coordinate of the mouse pointer that represents the horizontal position in pixels. The position is relative to the left edge of the Outlook on the web or the new Outlook on Windows client window. |
pageY | Gets the y-coordinate of the mouse pointer that represents the vertical position in pixels. The position is relative to the top edge of the Outlook on the web or the new Outlook on Windows client window. |
type | Gets the type of drag-and-drop event. The |
Property Details
pageX
Gets the x-coordinate of the mouse pointer that represents the horizontal position in pixels. The position is relative to the left edge of the Outlook on the web or the new Outlook on Windows client window.
pageX: number;
Property Value
number
Remarks
pageY
Gets the y-coordinate of the mouse pointer that represents the vertical position in pixels. The position is relative to the top edge of the Outlook on the web or the new Outlook on Windows client window.
pageY: number;
Property Value
number
Remarks
type
Gets the type of drag-and-drop event. The dragover
event occurs when messages or file attachments are dragged over an add-in's task pane.
type: "dragover";
Property Value
"dragover"