using System; using System.Collections.Generic; using System.Text; namespace FastReport { /// /// Implements the object's editor. /// public interface IHasEditor { /// /// Invokes the object's editor. /// /// true if object was succesfully edited. /// /// This method is called by FastReport when the object is doubleclicked in the designer. /// bool InvokeEditor(); } }