ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Export.Html / GrapeCity.ActiveReports.Export.Html.Section Namespace / OutputHtmlFiles Class / OutputHtmlFiles Constructor
The file path to the main or starting HTML page. Other created files (such as linked images and table of contents pages) will use this file path as a prefix.
The parent HtmlExport object with which this object is working.

In This Topic
    OutputHtmlFiles Constructor
    In This Topic
    Initializes an instance of the OutputHtmlFiles class using the specified filePath as the base html page.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal filePath As String, _
       ByVal htmlExport As HtmlExport _
    )
    public OutputHtmlFiles( 
       string filePath,
       HtmlExport htmlExport
    )

    Parameters

    filePath
    The file path to the main or starting HTML page. Other created files (such as linked images and table of contents pages) will use this file path as a prefix.
    htmlExport
    The parent HtmlExport object with which this object is working.
    Remarks
    When this class is created, it demands permission to write files in the parent folder of the specified file. If permission is not granted, a SecurityException is thrown.
    See Also