Class ScrollArgs
Defines the scroll action arguments
Inheritance
System.Object
ScrollArgs
Implements
System.IEquatable<ScrollArgs>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class ScrollArgs : Object, IEquatable<ScrollArgs>
Constructors
ScrollArgs()
Declaration
public ScrollArgs()
Properties
Action
Defines the current action.
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PreviousScrollLeft
Defines the previous scroll left value.
Declaration
public double PreviousScrollLeft { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
PreviousScrollTop
Defines the previous scroll top value.
Declaration
public double PreviousScrollTop { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
RequestType
Defines the action type.
Declaration
public string RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ScrollDirection
Defines the scroll direction.
Declaration
public string ScrollDirection { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ScrollLeft
Defines the scroll left value.
Declaration
public double ScrollLeft { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
ScrollTop
Defines the scroll top value.
Declaration
public double ScrollTop { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(ScrollArgs)
Returns boolean value by comparing scrollArgs
Declaration
public bool Equals(ScrollArgs scrollArgs)
Parameters
Type | Name | Description |
---|---|---|
ScrollArgs | scrollArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Returns boolean value by comparing object
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode()
Returns hashcode for current object
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>