ValidationStyle (NotesDXLExporter - LotusScript®)

Read-write. The method for validating the DXL being exported.

Note: This property is new with Release 7.
Note: This property is not supported in COM.

Defined in

NotesDXLExporter

Data type

Constant of type Integer

Syntax

To get: style% = notesDXLExporter .ValidationStyle

To set: notesDXLExporter .ValidationStyle = style%

Legal values

  • VALIDATIONSTYLE_NONE (0)
  • VALIDATIONSTYLE_DTD (1) (default)
  • VALIDATIONSTYLE_SCHEMA (2)

Usage

Setting this property to VALIDATIONSTYLE_DTD sets OutputDOCTYPE to True. Setting this property to any other value sets OutputDOCTYPE to False.

Setting OutputDOCTYPE to True sets this property to VALIDATIONSTYLE_DTD. Setting OutputDOCTYPE to False sets this property to VALIDATIONSTYLE_NONE if it is currently set to VALIDATIONSTYLE_DTD; otherwise, this property remains unchanged.

Example