New to Telerik UI for WPFStart a free 30-day trial

Represents manipulation event args.

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.Windows.Diagrams.Core.dll

Syntax:

C#
public sealed class ManipulationEventArgs : EventArgs

Inheritance: objectEventArgsManipulationEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ManipulationEventArgs class.

C#
public ManipulationEventArgs(IConnectionEditPoint manipulationPoint, IConnector connector, Point currentPosition, ManipulationStatus status)
Parameters:manipulationPointIConnectionEditPoint

The manipulation point.

connectorIConnector

The connector.

currentPositionPoint

The current position.

statusManipulationStatus

The status.

Properties

Gets or sets a value indicating whether this ManipulationEventArgs is canceled.

C#
public bool Cancel { get; set; }

Gets the connection.

C#
public IConnection Connection { get; }

Gets the connector.

C#
public IConnector Connector { get; }

Gets the current position.

C#
public Point CurrentPosition { get; }

Gets the manipulation point.

C#
public IConnectionEditPoint ManipulationPoint { get; }

Gets the manipulation status.

C#
public ManipulationStatus ManipulationStatus { get; }

Gets the shape.

C#
public IShape Shape { get; }