OoxmlSaveOptions.Zip64Mode

OoxmlSaveOptions Zip64Mode property. Specifies whether or not to use ZIP64 format extensions for the output document. The default value is Never.

OoxmlSaveOptions.Zip64Mode property

Specifies whether or not to use ZIP64 format extensions for the output document. The default value is Never.

public Zip64Mode Zip64Mode { get; set; }

Examples

Shows how to specify Zip64Mode upon saving document to DOCX.

OoxmlSaveOptions docxSaveOptions = new OoxmlSaveOptions();
docxSaveOptions.Zip64Mode = Zip64Mode.Always;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "OoxmlSaveOptions.Zip64Mode.docx", docxSaveOptions)
    .Execute();

See Also