Class ExportResources
Specifies the resources necessary for the export process.
Inheritance
Namespace: BoldReports.Writer
Assembly: BoldReports.Web.dll
Syntax
public class ExportResources : Object, IReportDispose, IDisposable
Constructors
ExportResources()
Initializes a new instance of the ExportResources class.
Declaration
public ExportResources()
Remarks
The class contains the resources required for the export process.
Properties
BrowserType
Declaration
public ExportResources.BrowserTypes BrowserType { get; set; }
Property Value
Type | Description |
---|---|
ExportResources.BrowserTypes |
DependentScripts
Holds the collection of scripts needed for export process.
Declaration
public List<string> DependentScripts { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | Contains the collection of DependentScripts. |
IncludeText
Set the value as true, only when the text in the data visualization items are not displayed.
Declaration
public bool IncludeText { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The defaut value is false. |
PhantomJSPath
Declaration
public string PhantomJSPath { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ResourcePath
Gets or sets the resource path for storing data visualization export processing resource files.
Declaration
public string ResourcePath { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string containing the path. |
Scripts
Holds the collection of scripts needed for the export process.
Declaration
public List<string> Scripts { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | Contains the collection of Scripts. |
Styles
Holds the collection of styes needed for export process.
Declaration
public List<string> Styles { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | Contains the collection of Styles. |
UsePhantomJS
Gets or sets a value indicating whether the export process uses Phantom JS.
Declaration
public bool UsePhantomJS { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the export process uses Phantom JS; otherwise, false. |
Methods
Dispose()
Provides a mechanism for releasing unmanaged resources.
Declaration
public void Dispose()
Remarks
It close or release unmanaged resources such as files, streams, and handles held by an instance of the class that implements this interface.