LoadOptions

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

PropertiesDescription
formatThe format of input file, (“docx”, for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions.
layoutNamesSpecify which layouts to be converted
backgroundColorA background color (for example: “Green”)
drawTypeType of drawing, “UseDrawColor” (default) - Allows to use common color, or “UseObjectColor” - Allows to use separate color for every object
{
    "layoutNames": ["Floor1", "Floor3"]
}

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

PropertiesDescription
formatThe format of input file, (“docx”, for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions.
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
printCommentsRepresents the way comments are printed with the sheet. Default is PrintNoComments. Values: PrintInPlace, PrintNoComments, PrintSheetEnd, PrintWithThreadedComments.
{
  "defaultFont": "Arial",
  "fontSubstitutes": [],
  "showGridLines": true,
  "showHiddenSheets": false,
  "onePagePerSheet": false,
  "convertRange": "",
  "skipEmptyRowsAndColumns": true,
  "password": "Pass123",
  "printComments": "PrintNoComments"
}

CsvLoadOptions - csv

PropertiesDescription
formatThe format of input file, (“docx”, for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions.
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
formatThe format of input file, (“docx”, for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions.
defaultFontDefault font for Diagram document.
{
  defaultFont: "Arial"
}

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

PropertiesDescription
formatThe format of input file, (“docx”, for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions.
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
formatThe format of input file, (“docx”, for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions.
defaultFontDefault font for Psd, Emf, Wmf document types. The following font will be used if a font is missing
{
  "defaultFont": "Arial"
}

OneLoadOptions - one

PropertiesDescription
formatThe format of input file, (“docx”, for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions.
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
formatThe format of input file, (“docx”, for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions.
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
formatThe format of input file, (“docx”, for example). This field must be filled with correct input file format when using ConvertDirect method, which accepts input file as binary stream, so the API can correctly handle LoadOptions.
defaultFontDefault font for rendering the presentation.
fontSubstitutesSubstitute specific fonts when converting Slides document.
passwordPassword to unprotect protected document.
showHiddenSlidesShow hidden slides.
commentsPositionRepresents the way comments are printed with the slide. Default is None. Values: None, Bottom, Right.
notesPositionRepresents the way notes are printed with the slide. Default is None. Values: None, BottomTruncated, BottomFull.
preserveDocumentStructureDetermines whether the document structure should be preserved when converting to PDF (default is false).
clearCustomDocumentPropertiesValue indicating whether custom document properties should be cleared.
clearBuiltInDocumentPropertiesValue indicating whether built-in document properties should be cleared.
convertOwnedOption to control whether the owned documents in the documents container must be converted.
convertOwnerOption to control whether the documents container itself must be converted. If this property is true, the documents container will be the first converted document. Default is true.
depthOption to control how many levels in depth to perform conversion. Default: 1
{
  "defaultFont": "Arial",
  "fontSubstitutes": [],
  "password": "Pass123",
  "showHiddenSlides": false,
  "commentsPosition": "None",
  "notesPosition": "None",
  "preserveDocumentStructure": false,
  "clearCustomDocumentProperties": false,
  "clearBuiltInDocumentProperties": false,
  "convertOwned": false,
  "convertOwner": true,
  "depth": 1
}

TxtLoadOptions - txt

PropertiesDescription
formatThe format of input file, (“docx”, for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions.
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
formatThe format of input file, (“docx”, for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions.
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
formatThe format of input file, (“docx”, for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions.
PageNumberingEnable or disable generation of page numbering in converted document. Default: false
{
  "PageNumbering": true
}
Close
Loading

Analyzing your prompt, please hold on...

An error occurred while retrieving the results. Please refresh the page and try again.