//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI { /// /// Represents a control used to render text that can be changed by the browser user. /// public interface IEditableTextControl : ITextControl { /// /// Raised when the text changes. /// event EventHandler TextChanged; } }