~~Title: Efl.Ui.Scrollable: scroll,finished~~ ===== Description ===== %%Called when scroll operation finishes.%% //Since 1.23// {{page>:develop:api-include:efl:ui:scrollable:event:scroll_finished:description&nouser&nolink&nodate}} ===== Signature ===== scroll,finished; ===== C information ===== EFL_UI_EVENT_SCROLL_FINISHED(void) ===== C usage ===== static void on_efl_ui_event_scroll_finished(void *data, const Efl_Event *event) { void info = event->info; Eo *obj = event->object; Data *d = data; /* event hander code */ } static void setup_event_handler(Eo *obj, Data *d) { efl_event_callback_add(obj, EFL_UI_EVENT_SCROLL_FINISHED, on_efl_ui_event_scroll_finished, d); }