LoadOptions

CadLoadOptions - dxf, dwg, dgn, dwf, stl, Ifc, plt, Igs

PropertiesDescription
widthPage width for converting CAD document
heightPage height for converting CAD document
layoutNamesSpecify which layouts to be converted
{
    "width": 1920,
    "height": 1080,
    "layoutNames": ["Floor1", "Floor3"]
}

SpreadsheetLoadOptions - xls, xlsx, xlsm, xlsb, xls2003, ods, ots, xltx, xltm, tsv

PropertiesDescription
defaultFontDefault font for Cells document
fontSubstitutesSubstitute specific fonts when converting Cells document
showGridLinesShow grid lines
showHiddenSheetsShow hidden sheets
onePagePerSheetPut whole sheet in a single page
convertRangeConvert specific range when converting to other than cells format. Example: “D1:F8”
skipEmptyRowsAndColumnsSkips empty rows and columns when converting
passwordPassword to unprotect protected document
hideCommentHide comments
{
  "defaultFont": "Arial",
  "fontSubstitutes": [],
  "showGridLines": true,
  "showHiddenSheets": false,
  "onePagePerSheet": false,
  "convertRange": "",
  "skipEmptyRowsAndColumns": true,
  "password": "Pass123",
  "hideComment": true
}

CsvLoadOptions - csv

PropertiesDescription
separatorDelimiter of a Csv file
isMultiEncodedTrue means the file contains several encodings
hasFormulaIndicates whether text is formula if it starts with “#”
convertNumericDataIndicates whether the string in the file is converted to numeric
convertDateTimeDataIndicates whether the string in the file is converted to DateTime
{
  "separator": ",",
  "isMultiencoded": false,
  "hasFormula": true,
  "convertNumericData": true,
  "convertDateTimeData": true
}

DiagramLoadOptions - vsd, vsdx, vss, vst, vsx, vtx, vdw, vdx, svg, vssx, vstx, vstm, vsdm, vssm

PropertiesDescription
defaultFontDefault font for Diagram document.
{
  defaultFont: "Arial"
}

EmailLoadOptions - msg, eml, emlx, mht, ost, pst

PropertiesDescription
displayHeaderDisplay or hide the email header
displayFromEmailAddressDisplay or hide “from” email address
displayEmailAddressDisplay or hide email address
displayToEmailAddressDisplay or hide “to” email address
displayCcEmailAddressDisplay or hide “Cc” email address
displayBccEmailAddressDisplay or hide “Bcc” email address
FieldLabelsThe mapping between email message field and field text representation
PreserveOriginalDateDefines whether need to keep original date header string in mail message when saving or not (Default value is true)
{
  "displayHeader": true,
  "displayFromEmailAddress": true,
  "displayEmailAddress": true,
  "displayToEmailAddress": true,
  "displayCcEmailAddress": true,
  "displayBccEmailAddress": true,
  "FieldLabels": [{
    "Field": "From",
    "Label": "Sender"
    }]
}

ImageLoadOptions - tiff, tif, jpeg, jpg, jp2, j2c, j2k, jpf, jpm, jpx, odg, png, gif, bmp, ico, psd, dcm, wmf, emf, webp

PropertiesDescription
defaultFontDefault font for Psd, Emf, Wmf document types. The following font will be used if a font is missing
{
  "defaultFont": "Arial"
}

OneLoadOptions - one

PropertiesDescription
defaultFontDefault font for Note document
fontSubstitutesSubstitute specific fonts when converting Note document
passwordPassword to unprotect protected document
{
  "defaultFont": "Arial",
  "fontSubstitutes": [],
  "password": "Pass123"
}

PdfLoadOptions - pdf

PropertiesDescription
removeEmbeddedFilesRemove embedded files
passwordPassword to unprotect protected document
hidePdfAnnotationsHide annotations in Pdf documents
flattenAllFieldsFlatten all the fields of the PDF form
{
  "removeEmbeddedFiles": false,
  "password": "Pass123",
  "hidePdfAnnotations": true,
  "flattenAllFields": true
}

PresentationLoadOptions - ppt, pps, pptx, ppsx, odp, otp, potx, potm, pptm, ppsm

PropertiesDescription
defaultFont
fontSubstitutesSubstitute specific fonts when converting Slides document
passwordPassword to unprotect protected document
showHiddenSlidesShow hidden slides
hideCommentHide comments
{
  "defaultFont": "Arial",
  "fontSubstitutes": [],
  "password": "Pass123",
  "showHiddenSlides": false,
  "hideComment": true
}

TxtLoadOptions - txt

PropertiesDescription
detectNumberingWithWhitespacesAllows to specify how numbered list items are recognized when plain text document is converted
trailingSpacesOptionsControls trailing space handling
leadingSpacesOptionsControls leading space handling
{
  "detectNumberingWIthWhiteSpaces": true,
  "trailingSpacesOptions": "trim",
  "leadingSpacesOptions": "preserve"
}

WordProcessingLoadOptions - doc, docm, docx, dot, dotm, dotx, rtf, odt, ott, mobi

PropertiesDescription
defaultFontDefault font for Words document
fontSubstitutesSubstitute specific fonts when converting Words document
autoFontSubstitutionEnable or disable auto font substitution
passwordPassword to unprotect protected document
hideWordTrackedChangesHide markup and track changes for Word documents
hideCommentHide comments
{
  "defaultFont": "Arial",
  "fontSubstitutes": [],
  "autoFontSubstitution": true,
  "password": "Pass123",
  "hideWordTrackedChanges": true
  "hideComment": true
}

WebLoadOptions - html

PropertiesDescription
PageNumberingEnable or disable generation of page numbering in converted document. Default: false
{
  "PageNumbering": true
}