IHasEditor.cs 549 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace FastReport
  5. {
  6. /// <summary>
  7. /// Implements the object's editor.
  8. /// </summary>
  9. public interface IHasEditor
  10. {
  11. /// <summary>
  12. /// Invokes the object's editor.
  13. /// </summary>
  14. /// <returns><b>true</b> if object was succesfully edited.</returns>
  15. /// <remarks>
  16. /// This method is called by FastReport when the object is doubleclicked in the designer.
  17. /// </remarks>
  18. bool InvokeEditor();
  19. }
  20. }