Zip64Mode

IPptxOptions.Zip64Mode 属性

指定是否为演示文稿使用ZIP64格式。默认值是IfNecessary

public Zip64Mode Zip64Mode { get; set; }

示例

示例:

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

另请参阅