TextControl | .NET 1.1, disposable |
System.Web.UI.MobileControls (system.web.mobile.dll) | abstract class |
This abstract class defines base functionality for several control
classes, including the TextBox,
Label, Link, and
Command classes. It defines both a
Text property and InnerText
property (which includes the text of any nested child controls).
public abstract class TextControl : MobileControl {
// Protected Constructors
protected TextControl( );
// Public Instance Properties
public string Text{set; get; }
}
Hierarchy
System.Object
System.Web.UI.Control(System.ComponentModel.IComponent,
System.IDisposable,
System.Web.UI.IParserAccessor,
System.Web.UI.IDataBindingsAccessor)
MobileControl(System.Web.UI.IAttributeAccessor)
TextControl
Subclasses
BaseValidator, Command,
Label, Link,
PhoneCall, TextBox
Returned By
System.Web.UI.MobileControls.Adapters.HtmlLabelAdapter.Control,
System.Web.UI.MobileControls.Adapters.WmlLabelAdapter.Control
|