Efl.Ui.Drag.drag_page_move

Description

Moves the draggable by dx,dy pages.

This moves the draggable by dx,dy pages. The increment is defined by Efl.Ui.Drag.drag_page.set().

dx and dy can be positive or negative numbers, integer values are recommended.

Paging is bugged!

Signature

drag_page_move @pure_virtual {
    params {
        @in dx: double;
        @in dy: double;
    }
    return: bool;
}

C signature

Eina_Bool efl_ui_drag_page_move(Eo *obj, double dx, double dy);

Parameters

  • dx (in) - The number of pages horizontally.
  • dy (in) - The number of pages vertically.

Implemented by