System.Web.UI.WebControls Namespace RepeaterCommandEventArgs Class
Initializes a new instance of the RepeaterCommandEventArgs class.
[ VB ]
Public Sub New ( _
ByVal item As RepeaterItem, _
ByVal commandSource As Object, _
ByVal originalArgs As CommandEventArgs _
)
[ C# ]
public RepeaterCommandEventArgs (
RepeaterItem item,
object commandSource,
CommandEventArgs originalArgs
);
[ C++ ]
public: RepeaterCommandEventArgs (
RepeaterItem* item,
Object* commandSource,
CommandEventArgs* originalArgs
);
[ JScript ]
public function RepeaterCommandEventArgs (
item : RepeaterItem,
commandSource : Object,
originalArgs : CommandEventArgs
);
- item
- The selected item from the Repeater.
- commandSource
- The source of the command.
- originalArgs
- A CommandEventArgs that contains the original event data.
Use this constructor to initialize a new instance of the RepeaterCommandEventArgs class.
When an instance of RepeaterCommandEventArgs is created by a call to this constructor, the following properties are initialized to the specified values.
Item |
Description |
Item |
The value of the item parameter. |
CommandSource |
The value of the commandSource parameter. |
RepeaterCommandEventHandler Repeater ItemCommand