Class PSExport
Represents the ps export filter.
Implements
Inherited Members
Namespace: FastReport.Export.PS
Assembly: FastReport.dll
Syntax
public class PSExport : ExportBase, IDisposable, IFRSerializableConstructors
PSExport()
Initializes a new instance of the PSExport class.
Declaration
public PSExport()Properties
PagesInDiffFiles
Enable or disable export every page in separate file
Declaration
public bool PagesInDiffFiles { get; set; }Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
Pictures
Enable or disable the pictures in PS export
Declaration
public bool Pictures { get; set; }Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
Quality
Gets or sets quality of JPEG images
Declaration
public int Quality { get; set; }Property Value
| Type | Description | 
|---|---|
| System.Int32 | 
SaveImagesSeparately
Enable or disable saving every image in separate file
Declaration
public bool SaveImagesSeparately { get; set; }Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
TextInCurves
Enable or disable export text in curves
Declaration
public bool TextInCurves { get; set; }Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
Methods
ExportBand(BandBase)
Export of Band
Declaration
protected override void ExportBand(BandBase band)Parameters
| Type | Name | Description | 
|---|---|---|
| BandBase | band | 
Overrides
ExportPageBegin(ReportPage)
Begin exporting of page
Declaration
protected override void ExportPageBegin(ReportPage page)Parameters
| Type | Name | Description | 
|---|---|---|
| ReportPage | page | 
Overrides
ExportPageEnd(ReportPage)
End exporting
Declaration
protected override void ExportPageEnd(ReportPage page)Parameters
| Type | Name | Description | 
|---|---|---|
| ReportPage | page | 
Overrides
Finish()
This method is called when the export is finished.
Declaration
protected override void Finish()Overrides
GetFileFilter()
Returns a file filter for a save dialog.
Declaration
protected override string GetFileFilter()Returns
| Type | Description | 
|---|---|
| System.String | String that contains a file filter, for example: "Bitmap image (.bmp)|.bmp" | 
Overrides
Serialize(FRWriter)
Serializes the object.
Declaration
public override void Serialize(FRWriter writer)Parameters
| Type | Name | Description | 
|---|---|---|
| FRWriter | writer | Writer object. | 
Overrides
Remarks
Do not call this method directly. You should override it if you are developing a new component for FastReport.
This method is called when the object needs to save the state. It may happen when:
- saving the report to the file or stream;
- saving the report to the designer's undo buffer;
- assigning the object to another object using the Assign(Base) or AssignAll methods;
- saving the object to the designer's clipboard;
- saving the object to the preview (when run a report).
Start()
This method is called when the export starts.
Declaration
protected override void Start()