Class SettingsEditorControl
The SettingsEditorControl control provides an Editor to edit DotNetNuke Settings.
Implements
Inherited Members
Namespace: DotNetNuke.UI.WebControls
Assembly: DotNetNuke.dll
Syntax
public class SettingsEditorControl : PropertyEditorControl
Properties
| Improve this Doc View SourceCustomEditors
Gets or sets the CustomEditors that are used by this control.
Declaration
public Hashtable CustomEditors { get; set; }
Property Value
Type | Description |
---|---|
Hashtable | The CustomEditors object. |
UnderlyingDataSource
Gets the Underlying DataSource.
Declaration
protected override IEnumerable UnderlyingDataSource { get; }
Property Value
Type | Description |
---|---|
IEnumerable | An IEnumerable. |
Overrides
| Improve this Doc View SourceVisibility
Gets or sets the Visibility values that are used by this control.
Declaration
public Hashtable Visibility { get; set; }
Property Value
Type | Description |
---|---|
Hashtable | The CustomEditors object. |
Methods
| Improve this Doc View SourceAddEditorRow(Panel, Object)
The SettingsEditorControl control provides an Editor to edit DotNetNuke Settings.
Declaration
protected override void AddEditorRow(Panel container, object obj)
Parameters
Type | Name | Description |
---|---|---|
Panel | container | |
System.Object | obj |
Overrides
| Improve this Doc View SourceAddEditorRow(Object)
The SettingsEditorControl control provides an Editor to edit DotNetNuke Settings.
Declaration
protected override void AddEditorRow(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Overrides
| Improve this Doc View SourceAddEditorRow(Table, Object)
AddEditorRow builds a sigle editor row and adds it to the Table.
Declaration
protected override void AddEditorRow(Table table, object obj)
Parameters
Type | Name | Description |
---|---|---|
Table | table | The Table Control to add the row to. |
System.Object | obj | Row Data Info. |
Overrides
Remarks
This method is protected so that classes that inherit from PropertyEditor can modify how the Row is displayed.
GetRowVisibility(Object)
GetRowVisibility determines the Visibility of a row in the table.
Declaration
protected override bool GetRowVisibility(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | The property. |
Returns
Type | Description |
---|---|
System.Boolean | true if the row is visible, otherwise false. |