using System;
using System.Collections.Generic;
using System.Text;
using FastReport.Design;
namespace FastReport.Wizards
{
///
/// Represents the "New Dialog" wizard.
///
public class NewDialogWizard : WizardBase
{
///
public override bool Run(Designer designer)
{
if (designer.Restrictions.DontCreatePage)
return false;
designer.cmdNewDialog.Invoke();
return true;
}
}
}