Multi-line entry-field (MLE) control data structure.

typedef struct _MLECTLDATA {
  USHORT     cbCtlData;      /*  Length of control data in bytes. */
  USHORT     afIEFormat;     /*  Import/export format. */
  ULONG      cchText;        /*  Text limit. */
  IPT        iptAnchor;      /*  Selection anchor point. */
  IPT        iptCursor;      /*  Selection cursor point. */
  LONG       cxFormat;       /*  Formatting-rectangle width in pels. */
  LONG       cyFormat;       /*  Formatting-rectangle height in pels. */
  ULONG      afFormatFlags;  /*  Format flags. */
} MLECTLDATA;

typedef   MLECTLDATA   * PMLECTLDATA ;


[Back] [Next]