Zip64Mode

IPptxOptions.Zip64Mode-Eigenschaft

Gibt an, ob das ZIP64-Format für das Präsentationsdokument verwendet wird. Der Standardwert ist IfNecessary

public Zip64Mode Zip64Mode { get; set; }

Beispiele

Beispiel:

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

Siehe auch