Efl.Ui.Drag.drag_step_move

Description

Moves the draggable by dx,dy steps.

This moves the draggable part by dx,dy steps where the step increment is the amount set by Efl.Ui.Drag.drag_step.set().

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

Signature

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

C signature

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

Parameters

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

Implemented by