using System;
using System.Collections.Generic;
using System.Text;
namespace FastReport.Web.Services
{
///
/// The interface may change over time
///
public interface ITextEditService
{
///
/// Returns a string with template text edit form
///
/// Click options - page, coordinates
/// WebReport clicked on
///
string GetTemplateTextEditForm(string click, WebReport webReport);
}
}