ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Export.Pdf Assembly / GrapeCity.ActiveReports.Export.Pdf.Section Namespace / PdfDocumentOptions Class
Members Example

In This Topic
    PdfDocumentOptions Class
    In This Topic
    Encapsulates viewer preferences and document information/metadata for an output PDF document.
    Object Model
    PdfDocumentOptions Class
    Syntax
    'Declaration
     
    Public NotInheritable Class PdfDocumentOptions 
    public sealed class PdfDocumentOptions 
    Example
    GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport p = new GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport();
    p.Options.Application = "Mortimer's Reporting Software";
    p.Options.Author = "Mortimer";
    p.Options.CenterWindow = true;
    p.Options.DisplayMode = GrapeCity.ActiveReports.Export.Pdf.Section.DisplayMode.Thumbs;
    p.Options.DisplayTitle = true;
    p.Options.FitWindow = true;
    p.Options.HideMenubar = true;
    p.Options.HideToolbar = true;
    p.Options.HideWindowUI = true;
    p.Options.Keywords = "annual";
    Dim p As New GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport
    With p.Options
        .Application = "Mortimer's Reporting Software"
        .Author = "Mortimer"
        .CenterWindow = True
        .DisplayMode = GrapeCity.ActiveReports.Export.Pdf.Section.DisplayMode.Thumbs
        .DisplayTitle = True
        .FitWindow = True
        .HideMenubar = True
        .HideToolbar = True
        .HideWindowUI = True
        .Keywords = "annual"
    Inheritance Hierarchy

    System.Object
       GrapeCity.ActiveReports.Export.Pdf.Section.PdfDocumentOptions

    See Also