Class ReportInfo
This class represents the report information such as name, author, description etc.
Inheritance
Inherited Members
Namespace: FastReport
Assembly: FastReport.OpenSource.dll
Syntax
public class ReportInfo
Constructors
ReportInfo()
Initializes a new instance of the ReportInfo class with default settings.
Declaration
public ReportInfo()
Properties
Author
Gets or sets the author of a report.
Declaration
public string Author { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Created
Gets or sets the report creation date and time.
Declaration
public DateTime Created { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
CreatorVersion
Gets the version of FastReport that was created this report file.
Declaration
public string CreatorVersion { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Description
Gets or sets the report description.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Modified
Gets or sets a value indicating that report was modified in the designer.
Declaration
public DateTime Modified { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Name
Gets or sets the name of a report.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Picture
Gets or sets the picture associated with a report.
Declaration
public Image Picture { get; set; }
Property Value
Type | Description |
---|---|
Image |
PreviewPictureRatio
Gets or sets the ratio that will be used when generating a preview picture.
Declaration
public float PreviewPictureRatio { get; set; }
Property Value
Type | Description |
---|---|
System.Single |
SaveMode
Gets or sets SaveMode property.
Declaration
public SaveMode SaveMode { get; set; }
Property Value
Type | Description |
---|---|
SaveMode |
SavePreviewPicture
Gets or sets a value that determines whether to fill the Picture property automatically.
Declaration
public bool SavePreviewPicture { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Tag
Gets or sets the Tag string object for this report file.
Declaration
public string Tag { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Version
Gets or sets the report version.
Declaration
public string Version { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Clear()
Resets all properties to its default values.
Declaration
public void Clear()