Efl.Player.paused

Description

Pause state of the media file.

This property sets the pause state of the media. Re-setting the current pause state has no effect.

If Efl.Player.playing is set to true, this property can be used to pause and resume playback of the media without changing its Efl.Player.playback_progress property. This property cannot be changed if Efl.Player.playing is false.

Since 1.23

Values

  • paused - true if paused, false otherwise.

Signature

@property paused @pure_virtual {
    get {}
    set {
        return: bool (false);
    }
    values {
        paused: bool;
    }
}

C signature

Eina_Bool efl_player_paused_get(const Eo *obj);
Eina_Bool efl_player_paused_set(Eo *obj, Eina_Bool paused);

Implemented by