Class SkinsEditControl
The SkinsEditControl control provides a standard UI component for editing skins.
Implements
Inherited Members
Namespace: DotNetNuke.UI.Skins.Controls
Assembly: DotNetNuke.dll
Syntax
public class SkinsEditControl : EditControl
Constructors
| Improve this Doc View SourceSkinsEditControl()
Initializes a new instance of the SkinsEditControl class. Constructs a SkinsEditControl.
Declaration
public SkinsEditControl()
SkinsEditControl(String)
Initializes a new instance of the SkinsEditControl class. Constructs a SkinsEditControl.
Declaration
public SkinsEditControl(string type)
Parameters
Type | Name | Description |
---|---|---|
System.String | type | The type of the property. |
Properties
| Improve this Doc View SourceAddedItem
The SkinsEditControl control provides a standard UI component for editing skins.
Declaration
protected string AddedItem { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DictionaryValue
Gets or sets dictionaryValue returns the Dictionary(Of Integer, String) representation of the Value.
Declaration
protected Dictionary<int, string> DictionaryValue { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<System.Int32, System.String> | A Dictionary(Of Integer, String) representing the Value. |
OldDictionaryValue
Gets or sets oldDictionaryValue returns the Dictionary(Of Integer, String) representation of the OldValue.
Declaration
protected Dictionary<int, string> OldDictionaryValue { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<System.Int32, System.String> | A Dictionary(Of Integer, String) representing the OldValue. |
OldStringValue
Gets oldStringValue returns the String 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 SourceLoadPostData(String, NameValueCollection)
LoadPostData loads the Post Back Data and determines whether the value has change.
Declaration
public override bool LoadPostData(string postDataKey, NameValueCollection postCollection)
Parameters
Type | Name | Description |
---|---|---|
System.String | postDataKey | A key to the PostBack Data to load. |
NameValueCollection | postCollection | A name value collection of postback data. |
Returns
Type | Description |
---|---|
System.Boolean | true if the value has changed, otherwise false. |
Overrides
| 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 SourceOnPreRender(EventArgs)
OnPreRender runs just before the control is due to be rendered.
Declaration
protected override void OnPreRender(EventArgs e)
Parameters
Type | Name | Description |
---|---|---|
EventArgs | e |
RaisePostBackEvent(String)
The SkinsEditControl control provides a standard UI component for editing skins.
Declaration
public void RaisePostBackEvent(string eventArgument)
Parameters
Type | Name | Description |
---|---|---|
System.String | eventArgument |
RenderEditMode(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
| Improve this Doc View SourceRenderViewMode(HtmlTextWriter)
RenderViewMode renders the View (readonly) mode of the control.
Declaration
protected override void RenderViewMode(HtmlTextWriter writer)
Parameters
Type | Name | Description |
---|---|---|
HtmlTextWriter | writer | A HtmlTextWriter. |