~~Title: Elm.Autocapital.Type~~ ===== Description ===== %%Autocapitalization Types. Choose method of auto-capitalization.%% {{page>:develop:api-include:elm:autocapital:type:description&nouser&nolink&nodate}} ===== Fields ===== {{page>:develop:api-include:elm:autocapital:type:fields&nouser&nolink&nodate}} * **none** - %%No auto-capitalization when typing.%% * **word** - %%Autocapitalize each word typed.%% * **sentence** - %%Autocapitalize the start of each sentence.%% * **allcharacter** - %%Autocapitalize all letters.%% ===== Signature ===== enum @extern Elm.Autocapital.Type { none: 0, word, sentence, allcharacter } ===== C signature ===== typedef enum { ELM_AUTOCAPITAL_TYPE_NONE = 0, ELM_AUTOCAPITAL_TYPE_WORD, ELM_AUTOCAPITAL_TYPE_SENTENCE, ELM_AUTOCAPITAL_TYPE_ALLCHARACTER } Elm_Autocapital_Type;