HtmlObjectMenu.cs 555 B

1234567891011121314151617181920
  1. using FastReport.Design;
  2. namespace FastReport
  3. {
  4. /// <summary>
  5. /// The class introduces some menu items specific to the <b>TextObject</b>.
  6. /// </summary>
  7. public class HtmlObjectMenu : TextObjectBaseMenu
  8. {
  9. /// <summary>
  10. /// Initializes a new instance of the <b>TextObjectMenu</b>
  11. /// class with default settings.
  12. /// </summary>
  13. /// <param name="designer">The reference to a report designer.</param>
  14. public HtmlObjectMenu(Designer designer) : base(designer)
  15. {
  16. }
  17. }
  18. }