Set document type. This property is ignored if conversion method is set to CNV_METHOD_DEFAULT
Sub DocumentType(newVal As Long)
newVal
One of optDocumentType values:
DOCTYPE_SINGLE_COLUMN = 1 - Single-column (Default),
DOCTYPE_MULTI_COLUMN = 2 - Multi-column,
DOCTYPE_PLEADING = 3 - Pleading
Please refer to the list of return exceptions.
oConverter = CreateObject("EasyConverter.PDF2Word.4") ' Set conversion method oConverter.ConversionMethod = CNV_METHOD_TEXT_FLOW ' Set document type oConverter.DocumentType = DOCTYPE_MULTI_COLUMN Call oConverter.ConvertToWord(inFileName, outFileName)