Efl.Ui.Format.formatted_value_get

Description

Internal method to be used by widgets including this mixin to perform the conversion from the internal numerical value into the text representation (Users of these widgets do not need to call this method).

Efl.Ui.Format.formatted_value_get uses any user-provided mechanism to perform the conversion, according to their priorities, and implements a simple fallback if all mechanisms fail.

Since 1.23

Signature

formatted_value_get @protected {
    params {
        @in str: strbuf;
        @in value: const(any_value);
    }
}

C signature

void efl_ui_format_formatted_value_get(Eo *obj, Eina_Strbuf *str, const Eina_Value value);

Parameters

  • str (in) - Output formatted string. Its contents will be overwritten by this method.
  • value (in) - The Eina.Value to convert to text.

Implemented by