Class
PositionChangedEventArgs

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.Windows.Diagrams.Core.dll

Syntax:

cs-api-definition
public class PositionChangedEventArgs : DiagramItemsEventArgs

Inheritance: objectEventArgsDiagramItemsEventArgsPositionChangedEventArgs

Derived Classes: DragItemsEventArgs

Inherited Members DiagramItemsEventArgs.ItemsEventArgs.Empty

Constructors

PositionChangedEventArgs(Point, Point, IEnumerable<IDiagramItem>)

Initializes a new instance of the PositionChangedEventArgs class.

Declaration

cs-api-definition
public PositionChangedEventArgs(Point oldPosition, Point newPosition, IEnumerable<IDiagramItem> items)

Parameters

oldPosition

Point

The old position.

newPosition

Point

The new position.

items

IEnumerable<IDiagramItem>

The items.

Properties

NewPosition

Gets the new value.

Declaration

cs-api-definition
public Point NewPosition { get; }

Property Value

Point

OldPosition

Gets the old value.

Declaration

cs-api-definition
public Point OldPosition { get; }

Property Value

Point