Class DualListBoxEventArgs
The DualListBoxEventArgs class is a cusom EventArgs class for handling Event Args in the DualListBox.
Inheritance
System.Object
DualListBoxEventArgs
Namespace: DotNetNuke.UI.WebControls
Assembly: DotNetNuke.dll
Syntax
public class DualListBoxEventArgs : EventArgs
Constructors
| Improve this Doc View SourceDualListBoxEventArgs(List<String>)
Initializes a new instance of the DualListBoxEventArgs class. Constructs a new DualListBoxEventArgs.
Declaration
public DualListBoxEventArgs(List<string> items)
Parameters
Type | Name | Description |
---|---|---|
List<System.String> | items | The items. |
Properties
| Improve this Doc View SourceItems
Gets or sets the Items.
Declaration
public List<string> Items { get; set; }
Property Value
Type | Description |
---|---|
List<System.String> | A List(Of String). |