LotusScript to C API Programming Guide
rtLib Domino Rich Text Management template
Home

Anonymous

login


 

Hosted by Prominic.NET, Inc.

DXLIMPORTOPTION

#include <xml.h>

DXL importer options for ACL, design elements, and documents

C definition

typedef enum
{
  DXLIMPORTOPTION_IGNORE=1,      /* ignore imported data */
  DXLIMPORTOPTION_CREATE=2,      /* create new data from imported data */
  DXLIMPORTOPTION_CREATE_RESERVED1=3,  /* do not used - reserved for future variation of create option */
  DXLIMPORTOPTION_CREATE_RESERVED2=4,  /* do not used - reserved for future variation of create option */

  DXLIMPORTOPTION_REPLACE_ELSE_IGNORE=5,  /* if imported data matches existing data, then replace existing */
              /* ... data with imported data, else ignore imported data. */
  DXLIMPORTOPTION_REPLACE_ELSE_CREATE=6,  /* if imported data matches existing data, then replace existing */
              /* ... data with imported data, else create new data from imported data */
  DXLIMPORTOPTION_REPLACE_RESERVED1=7,  /* do not used - reserved for future variation of replace option */
  DXLIMPORTOPTION_REPLACE_RESERVED2=8,  /* do not used - reserved for future variation of replace option */

  DXLIMPORTOPTION_UPDATE_ELSE_IGNORE=9,  /* if imported data matches existing data, then update existing */
              /* ... data with imported data, else ignore imported data. */
  DXLIMPORTOPTION_UPDATE_ELSE_CREATE=10,  /* if imported data matches existing data, then update existing */
              /* ... data with imported data, else create new data from
                  imported data */

  DXLIMPORTOPTION_UPDATE_RESERVED1=11,  /* do not used - reserved for future variation of update option */
  DXLIMPORTOPTION_UPDATE_RESERVED2=12  /* do not used - reserved for future variation of update option */

} DXLIMPORTOPTION;

LotusScript

Definition(s)