Class WizardBase
The base class for all report wizards.
Inheritance
System.Object
WizardBase
Namespace: FastReport.Wizards
Assembly: FastReport.dll
Syntax
public abstract class WizardBase
Remarks
To create own wizard, use this class as a base. All you need is to override the Run(Designer) method. To register a wizard, use the FastReport.Utils.RegisteredObjects.AddWizard(System.Type,System.Drawing.Bitmap,System.String,System.Boolean) method.
Methods
Run(Designer)
Runs the wizard.
Declaration
public abstract bool Run(Designer designer)
Parameters
Type | Name | Description |
---|---|---|
Designer | designer | Report designer. |
Returns
Type | Description |
---|---|
System.Boolean | true if wizard was executed succesfully. |
Remarks
This method is called when you select a wizard in the "Add New Item" window and click "Add" button. You should do the work in this method.