Class ScrollOutOfBoundEventArgs

Definition

Namespace:
Tizen.NUI.Components
Assembly:
Tizen.NUI.Components.dll

ScrollOutofBoundEventArgs is to record scroll out-of-bound event arguments which will be sent to user.

C#
Copy
public class ScrollOutOfBoundEventArgs : EventArgs
Inheritance
ScrollOutOfBoundEventArgs

Constructors

View Source

ScrollOutOfBoundEventArgs(ScrollOutOfBoundEventArgs.Direction, Single)

Constructor.

Declaration
C#
Copy
public ScrollOutOfBoundEventArgs(ScrollOutOfBoundEventArgs.Direction direction, float displacement)
Parameters
Type Name Description
ScrollOutOfBoundEventArgs.Direction direction

Current pan direction

Single displacement

Current total displacement

Properties

View Source

Displacement

Current total displacement of ContentContainer. if its value is greater than 0, it is at the top/left; if less than 0, it is at the bottom/right.

Declaration
C#
Copy
public float Displacement { get; }
Property Value
Type Description
Single
View Source

PanDirection

Current pan direction of ContentContainer.

Declaration
C#
Copy
public ScrollOutOfBoundEventArgs.Direction PanDirection { get; }
Property Value
Type Description
ScrollOutOfBoundEventArgs.Direction

Extension Methods