~~Title: Efl.Ui.Format_String_Type~~ ===== Description ===== %%Type of formatting string.%% {{page>:develop:api-include:efl:ui:format_string_type:description&nouser&nolink&nodate}} ===== Fields ===== {{page>:develop:api-include:efl:ui:format_string_type:fields&nouser&nolink&nodate}} * **simple** - %%This is the simplest formatting mechanism, working pretty much like %%''printf''%%. Accepted formats are %%''s''%%, %%''f''%%, %%''F''%%, %%''d''%%, %%''u''%%, %%''i''%%, %%''o''%%, %%''x''%% and %%''X''%%. For example, "%1.2f meters", "%.0%%%%%%" or "%d items".%% * **time** - %%A strftime-style string used to format date and time values. For example, "%A" for the full name of the day or "%y" for the year as a decimal number without a century (range 00 to 99). Note that these are not the %%''printf''%% formats. See the man page for the %%''strftime''%% function for the complete list.%% ===== Signature ===== enum Efl.Ui.Format_String_Type { simple: 0, time } ===== C signature ===== typedef enum { EFL_UI_FORMAT_STRING_TYPE_SIMPLE = 0, EFL_UI_FORMAT_STRING_TYPE_TIME } Efl_Ui_Format_String_Type;