Class DiagramThumbDragEventArgs
Represents a class that provides the data for DragDelta event and DragComplete event.
Inheritance
Namespace: Syncfusion.UI.Xaml.Diagram.Controls
Assembly: Syncfusion.SfDiagram.WPF.dll
Syntax
public class DiagramThumbDragEventArgs : Object
Constructors
DiagramThumbDragEventArgs(Object, DiagramThumbDragDelta, DiagramThumbDragDelta, MouseEventArgs, UIElement, DiagramThumbDragStartingEventArgs)
Initializes a new instance of the DiagramThumbDragEventArgs class.
Declaration
public DiagramThumbDragEventArgs(object source, DiagramThumbDragDelta cumulative, DiagramThumbDragDelta delta, MouseEventArgs pointerArgs, UIElement container, DiagramThumbDragStartingEventArgs startingArgs)
Parameters
Type | Name | Description |
---|---|---|
System.Object | source | The source value of the event. |
DiagramThumbDragDelta | cumulative | Cumulative value of horizontal and vertical changing values of thumb. |
DiagramThumbDragDelta | delta | Delta value of horizontal and vertical changing values of thumb. |
System.Windows.Input.MouseEventArgs | pointerArgs | A System.Windows.Input.MouseEventArgs values for thumb. |
System.Windows.UIElement | container | The container of the thumb. |
DiagramThumbDragStartingEventArgs | startingArgs | A DiagramThumbDragStartingEventArgs values. |
Properties
Container
Gets the container value of the thumb.
Declaration
public UIElement Container { get; }
Property Value
Type |
---|
System.Windows.UIElement |
Cumulative
Gets the cumulative value of the thumb drag changing. This holds the horizontal and vertical change values of thumb.
Declaration
public DiagramThumbDragDelta Cumulative { get; }
Property Value
Type |
---|
DiagramThumbDragDelta |
Delta
Gets the delta value of the thumb drag changing. This holds the horizontal and vertical change values of thumb.
Declaration
public DiagramThumbDragDelta Delta { get; }
Property Value
Type |
---|
DiagramThumbDragDelta |
PointerArgs
Gets the mouse pointer arguments values to the thumb.
Declaration
public MouseEventArgs PointerArgs { get; }
Property Value
Type |
---|
System.Windows.Input.MouseEventArgs |
Source
Gets the source value of the thumb which is using to holds the thumb.
Declaration
public object Source { get; }
Property Value
Type |
---|
System.Object |
StartingArgs
Gets the value of DiagramThumbDragStartingEventArgs class to the thumb.
Declaration
public DiagramThumbDragStartingEventArgs StartingArgs { get; }
Property Value
Type |
---|
DiagramThumbDragStartingEventArgs |