Show / Hide Table of Contents

Class PositionChangedEventArgs

Object position changed event arguments.

Inheritance
System.Object
PositionChangedEventArgs
Namespace: GraphShape.Controls
Assembly: GraphShape.Controls.dll
Syntax
public class PositionChangedEventArgs : RoutedEventArgs

Constructors

| Improve this Doc View Source

PositionChangedEventArgs(RoutedEvent, Object, Double, Double)

Initializes a new instance of the PositionChangedEventArgs class.

Declaration
public PositionChangedEventArgs(RoutedEvent routedEvent, object source, double xChange, double yChange)
Parameters
Type Name Description
RoutedEvent routedEvent

The routed event identifier for this instance of the System.Windows.RoutedEventArgs class.

System.Object source

An alternate source that will be reported when the event is handled. This pre-populates the System.Windows.RoutedEventArgs.Source property.

System.Double xChange

X displacement.

System.Double yChange

Y displacement.

Properties

| Improve this Doc View Source

XChange

X displacement.

Declaration
public double XChange { get; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

YChange

Y displacement.

Declaration
public double YChange { get; }
Property Value
Type Description
System.Double

Extension Methods

GraphHelpers.GetDistances<TVertex, TEdge, TGraph>(TGraph)
GraphHelpers.GetDiameter<TVertex, TEdge, TGraph>(TGraph)
GraphHelpers.GetDiameter<TVertex, TEdge, TGraph>(TGraph, out Double[,])
  • Improve this Doc
  • View Source
In This Article
Back to top GraphShape