1234567891011121314151617181920212223 |
- using System;
- using System.IO;
- using System.Collections;
- using System.Collections.Generic;
- using System.Windows.Forms;
- using System.Drawing;
- using System.ComponentModel;
- using FastReport.Forms;
- using FastReport.Utils;
- namespace FastReport.Design
- {
- /// <summary>
- /// Provides functionality required for report designer form.
- /// </summary>
- public interface IDesignerForm
- {
- /// <summary>
- /// Gets the designer control.
- /// </summary>
- Designer Designer { get; }
- }
- }
|