div-action-scroll-by
Scrolls scrollable container from current position by item_count
or by offset
, if both provided scroll action will be combined, negative numbers associated with backward scroll.
Parameters
Parameters | Description |
---|---|
id |
string Required parameter. Identifier of the view that is going to be manipulated. Available platforms: Android. |
type |
string Required parameter. The value must always be Available platforms: Android. |
animated |
bool If Default value: Available platforms: Android. |
item_count |
int Count of container items to scroll, negative value is associated with backward scroll. Default value: Available platforms: Android. |
offset |
int Distance to scroll measured in Default value: Available platforms: Android. |
overflow |
string Specifies how navigation will occur when the boundary elements are reached: clamp — Transition will stop at the boundary element (default value);ring — Transition will be to the beginning or the end depending on the current element.Possible values: Default value: Available platforms: Android. |
JSON
{
type*: "scroll_by",
animated: "bool",
id*: "string",
item_count: "int",
offset: "int",
overflow: "string"
}