Class TextEditControl
The TextEditControl control provides a standard UI component for editing string/text properties.
Inheritance
System.Object
TextEditControl
Implements
IPostBackDataHandler
Inherited Members
Namespace: DotNetNuke.UI.WebControls
Assembly: DotNetNuke.dll
Syntax
public class TextEditControl : EditControl
Constructors
| Improve this Doc View SourceTextEditControl()
Initializes a new instance of the TextEditControl class. Constructs a TextEditControl.
Declaration
public TextEditControl()
TextEditControl(String)
Initializes a new instance of the TextEditControl class. Constructs a TextEditControl.
Declaration
public TextEditControl(string type)
Parameters
Type | Name | Description |
---|---|---|
System.String | type | The type of the property. |
Properties
| Improve this Doc View SourceOldStringValue
Gets oldStringValue returns the Boolean representation of the OldValue.
Declaration
protected string OldStringValue { get; }
Property Value
Type | Description |
---|---|
System.String | A String representing the OldValue. |
StringValue
Gets or sets stringValue is the value of the control expressed as a String.
Declaration
protected override string StringValue { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the Value. |
Overrides
Methods
| Improve this Doc View SourceOnDataChanged(EventArgs)
OnDataChanged runs when the PostbackData has changed. It raises the ValueChanged Event.
Declaration
protected override void OnDataChanged(EventArgs e)
Parameters
Type | Name | Description |
---|---|---|
EventArgs | e |
Overrides
| Improve this Doc View SourceRenderEditMode(HtmlTextWriter)
RenderEditMode renders the Edit mode of the control.
Declaration
protected override void RenderEditMode(HtmlTextWriter writer)
Parameters
Type | Name | Description |
---|---|---|
HtmlTextWriter | writer | A HtmlTextWriter. |
Overrides
Implements
IPostBackDataHandler