'Declaration
Public Event PositionChanged As EventHandler(Of PositionChangedEventArgs)
'Usage
Dim instance As C1Window Dim handler As EventHandler(Of PositionChangedEventArgs) AddHandler instance.PositionChanged, handler
public event EventHandler<PositionChangedEventArgs> PositionChanged
public: event EventHandler<PositionChangedEventArgs^>^ PositionChanged
Event Data
The event handler receives an argument of type PositionChangedEventArgs containing data related to this event. The following PositionChangedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
PreviousPosition | Gets the previous position of the window. |
See Also