//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI { /// /// Represents a control used for text rendering, with text that cannot be changed by the browser user. /// public interface ITextControl { /// /// The text of the control. /// string Text{get;set;} } }