◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── #define INCL_WINENTRYFIELDS typedef struct _ENTRYFDATA { /* efd */ USHORT cb; USHORT cchEditLimit; USHORT ichMinSel; USHORT ichMaxSel; } ENTRYFDATA; The ENTRYFDATA structure contains control data used to specify the characteristics of an entry-field control. Field Description ──────────────────────────────────────────────────────────────────────────── cb Specifies the size of the structure (in bytes). Programs written in the C language should use the sizeof operator to set this field. cchEditLimit Specifies the maximum number of characters than can be entered in the edit control. ichMinSel Specifies the beginning point of the current selection within the entry field's text buffer. ichMaxSel Specifies the end point of the current selection within the entry field's text buffer. ♦