Table of Contents

Efl.Gfx.Image.center_fill_mode

Description

Specifies how the center part of the object (not the borders) should be drawn when EFL is rendering it.

This function sets how the center part of the image object's source image is to be drawn, which must be one of the values in Efl.Gfx.Center_Fill_Mode. By center we mean the complementary part of that defined by Efl.Gfx.Image.border_insets.set. This is very useful for making frames and decorations. You would most probably also be using a filled image (as in Efl.Gfx.Fill.fill_auto) to use as a frame.

Since 1.23

Values

Signature

@property center_fill_mode @pure_virtual {
    get {}
    set {}
    values {
        fill: Efl.Gfx.Center_Fill_Mode (Efl.Gfx.Center_Fill_Mode.default);
    }
}

C signature

Efl_Gfx_Center_Fill_Mode efl_gfx_image_center_fill_mode_get(const Eo *obj);
void efl_gfx_image_center_fill_mode_set(Eo *obj, Efl_Gfx_Center_Fill_Mode fill);

Implemented by