Class ScrolledEventArgs
Provides data for the Scrolled event.
Inheritance
System.Object
ScrolledEventArgs
Namespace: Syncfusion.Maui.AIAssistView
Assembly: Syncfusion.Maui.AIAssistView.dll
Syntax
public class ScrolledEventArgs : ScrolledEventArgs
Constructors
ScrolledEventArgs(Double, Double, Boolean, Boolean)
Initializes a new instance of the ScrolledEventArgs class.
Declaration
public ScrolledEventArgs(double scrollx, double scrolly, bool isBottomReached, bool isTopReached)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Double | scrollx | A value that determines the horizontal position of the conversation. |
| System.Double | scrolly | A value that determines the vertical position of the conversation. |
| System.Boolean | isBottomReached | A value that determines reached to the bottom of the conversation. |
| System.Boolean | isTopReached | A value that determines reached to the top of the conversation. |
Properties
IsBottomReached
Gets or sets a value indicating whether the scrolling has reached the bottom of the conversation.
Declaration
public bool IsBottomReached { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
IsTopReached
Gets or sets a value indicating whether the scrolling has reached the top of the conversation.
Declaration
public bool IsTopReached { get; set; }
Property Value
| Type |
|---|
| System.Boolean |