Zip64Mode

PptxOptions.Zip64Mode property

Specifies whether the ZIP64 format is used for the Presentation document. The default value is IfNecessary

public Zip64Mode Zip64Mode { get; set; }

Examples

Example:

[C#]
using (Presentation pres = new Presentation("demo.pptx"))
{
    pres.Save("demo-zip64.pptx", SaveFormat.Pptx, new PptxOptions()
    {
        Zip64Mode = Zip64Mode.Always
    });
}

See Also