GemBox.Presentation
  • Overview
  • Examples
  • Free version
  • Support
  • Pricelist

    Show / Hide Table of Contents

    SaveOptions Class

    Namespace:
    GemBox.Presentation
    Assembly:
    GemBox.Presentation.dll

    Represents a base class for saving options of various file formats.

    • C#
    • VB.NET
    public abstract class SaveOptions
    Public MustInherit Class SaveOptions
    Inheritance:
    System.Object
    SaveOptions
    Derived
    ImageSaveOptions
    PdfSaveOptions
    PptxSaveOptions
    XpsSaveOptions

    Properties

    ContentType

    Gets the content-type for this specific file format as defined in the RFC 2616.

    • C#
    • VB.NET
    public abstract string ContentType { get; }
    Public MustOverride ReadOnly Property ContentType As String
    Property Value
    System.String

    The content-type for this specific file format.

    See Also
    RFC 2616

    Image

    Gets the default saving options for image file format. Image will be saved in Bmp format.

    • C#
    • VB.NET
    public static ImageSaveOptions Image { get; }
    Public Shared ReadOnly Property Image As ImageSaveOptions
    Property Value
    ImageSaveOptions

    The default saving options for image file format.

    Remarks

    This property always returns a new instance of ImageSaveOptions class initialized with default constructor.

    Pdf

    Gets the default saving options for Portable Document Format (PDF).

    • C#
    • VB.NET
    public static PdfSaveOptions Pdf { get; }
    Public Shared ReadOnly Property Pdf As PdfSaveOptions
    Property Value
    PdfSaveOptions

    The default saving options for Portable Document Format (PDF).

    Remarks

    This property always returns a new instance of PdfSaveOptions class initialized with default constructor.

    Pptx

    Gets the default saving options for PowerPoint Presentation (PPTX) format.

    • C#
    • VB.NET
    public static PptxSaveOptions Pptx { get; }
    Public Shared ReadOnly Property Pptx As PptxSaveOptions
    Property Value
    PptxSaveOptions

    The default saving options for PowerPoint Presentation (PPTX) format.

    Remarks

    This property always returns a new instance of PptxSaveOptions class initialized with default constructor.

    Xps

    Gets the default saving options for XML Paper Specification (XPS) format.

    • C#
    • VB.NET
    public static XpsSaveOptions Xps { get; }
    Public Shared ReadOnly Property Xps As XpsSaveOptions
    Property Value
    XpsSaveOptions

    The default saving options for XML Paper Specification (XPS) format.

    Remarks

    This property always returns a new instance of XpsSaveOptions class initialized with default constructor.

    Examples

    Convert PowerPoint files to PDF in C# and VB.NET
    Load and Save PPTX in C# and VB.NET
    Write PowerPoint Files in C# and VB.NET

    See Also

    Save(String)
    Back to top

    Facebook • Twitter • LinkedIn

    © GemBox Ltd. — All rights reserved.