Class IntegerEditControl
The IntegerEditControl control provides a standard UI component for editing integer properties.
Implements
IPostBackDataHandler
Inherited Members
Namespace: DotNetNuke.UI.WebControls
Assembly: DotNetNuke.dll
Syntax
public class IntegerEditControl : EditControl
Constructors
| Improve this Doc View SourceIntegerEditControl()
Initializes a new instance of the IntegerEditControl class. Constructs an IntegerEditControl.
Declaration
public IntegerEditControl()
Properties
| Improve this Doc View SourceIntegerValue
Gets integerValue returns the Integer representation of the Value.
Declaration
protected int IntegerValue { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer representing the Value. |
OldIntegerValue
Gets oldIntegerValue returns the Integer representation of the OldValue.
Declaration
protected int OldIntegerValue { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer 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