Class AutoScrollerValueChangedEventArgs
Provides data for AutoScrollerValueChanged event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.Grids
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public sealed class AutoScrollerValueChangedEventArgs : GridEventArgs
Constructors
AutoScrollerValueChangedEventArgs(Boolean, Boolean, Boolean, Boolean, RowColumnIndex, Object)
Initializes a new instance of the AutoScrollerValueChangedEventArgs class.
Declaration
public AutoScrollerValueChangedEventArgs(bool isLineUp, bool isLineDown, bool isLineLeft, bool isLineRight, RowColumnIndex rowColumnIndex, object originalSender)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | isLineUp | Indicates when the mouse point is dragged upward direction. |
System.Boolean | isLineDown | Indicates when the mouse point is dragged downward direction. |
System.Boolean | isLineLeft | Indicates when the mouse point is dragged towards left direction. |
System.Boolean | isLineRight | Indicates when the mouse point is dragged towards right direction. |
RowColumnIndex | rowColumnIndex | Contains the RowColumnIndex related to the mouse released point. |
System.Object | originalSender | The source of the event. |
Properties
IsLineDown
Gets or sets a value indicating whether the mouse point is dragged towards down.
Declaration
public bool IsLineDown { get; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the mouse point is dragged downward direction; otherwise, false. |
IsLineLeft
Gets or sets a value indicating whether the mouse point is dragged towards left.
Declaration
public bool IsLineLeft { get; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the mouse point is dragged towards left direction; otherwise, false. |
IsLineRight
Gets or sets a value indicating whether the mouse point is dragged towards right.
Declaration
public bool IsLineRight { get; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the mouse point is dragged towards right direction; otherwise, false. |
IsLineUp
Gets or sets a value indicating whether the mouse point is dragged towards up.
Declaration
public bool IsLineUp { get; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the mouse point is dragged upward direction; otherwise, false. |
RowColumnIndex
Gets or sets the RowColumnIndex of the mouse released point during dragging selection.
Declaration
public RowColumnIndex RowColumnIndex { get; set; }
Property Value
Type | Description |
---|---|
RowColumnIndex | The corresponding RowColumnIndex related to the mouse released point during selection dragging operation. |