DragOver Event

Applies To

Chart object.

Description

Occurs when a range of cells is dragged over a chart.

Syntax

Private Sub object_DragOver( )

object An object of type Chart declared with events in a class module.

Example

This example displays the address of a range of cells dragged over a chart.

Private Sub Chart_DragOver()
    MsgBox Selection.Address
End Sub