menu

WPF

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class AutoScrollerValueChangedEventArgs - WPF API Reference | Syncfusion

    Show / Hide Table of Contents

    Class AutoScrollerValueChangedEventArgs

    Provides data for AutoScrollerValueChanged event.

    Inheritance
    System.Object
    System.EventArgs
    GridEventArgs
    AutoScrollerValueChangedEventArgs
    Inherited Members
    GridEventArgs.OriginalSender
    System.EventArgs.Empty
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Syncfusion.UI.Xaml.Grid
    Assembly: Syncfusion.SfGrid.WPF.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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved