ExportHiddenSlides

IGifOptions.ExportHiddenSlides property

Determines whether hidden slides will be exported. The default value is false.

public bool ExportHiddenSlides { get; set; }

Examples

[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
	pres.Save("pres.gif", SaveFormat.Gif, new GifOptions { ExportHiddenSlides = false });
}

See Also