Efl.Text_Annotate.annotation

Description

A new format for annotation.

This will replace the format applied by annotation with format. Assumes that annotation is a handle for an existing annotation, i.e. one that was added using Efl.Text_Annotate.annotation_insert to this object. Otherwise, this will fail and return false.

Keys

  • annotation - Given annotation

Values

  • format - The new format for the given annotation

Signature

@property annotation @pure_virtual {
    get {}
    set {
        return: bool;
    }
    keys {
        annotation: ptr(Efl.Text_Annotate_Annotation);
    }
    values {
        format: string;
    }
}

C signature

const char *efl_text_annotation_get(const Eo *obj, Efl_Text_Annotate_Annotation *annotation);
Eina_Bool efl_text_annotation_set(Eo *obj, Efl_Text_Annotate_Annotation *annotation, const char *format);

Implemented by