Class RowItemMouseEventArgs
Provides data for the MouseUp, MouseDown, and MouseMove events for the RadRowItem object.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Data.dll
Syntax
public class RowItemMouseEventArgs : RadRoutedEventArgs
Constructors
RowItemMouseEventArgs()
Declaration
public RowItemMouseEventArgs()
Properties
LeftButton
Gets or sets the left button.
Declaration
public MouseButtonState LeftButton { get; set; }
Property Value
MouseButtonState
The left button. |
Position
Gets or sets the position.
Declaration
public Point Position { get; set; }
Property Value
System.Windows.Point
The position. |
RightButton
Gets or sets the right button.
Declaration
public MouseButtonState RightButton { get; set; }
Property Value
MouseButtonState
The right button. |
Methods
FromMouseEvent(MouseEventArgs, UIElement)
Creates the RowItemMouseEventArgs instance.
Declaration
public static RowItemMouseEventArgs FromMouseEvent(MouseEventArgs args, UIElement targetElement)
Parameters
System.Windows.Input.MouseEventArgs
args
The System.Windows.Input.MouseEventArgs instance containing the event data. |
System.Windows.UIElement
targetElement
The target element. |
Returns
RowItemMouseEventArgs
|