This documentation is archived and is not being maintained.

RepeaterCommandEventArgs Constructor

Initializes a new instance of the RepeaterCommandEventArgs class.

[Visual Basic]
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
);

Parameters

item
A RepeaterItem that represents an item in the Repeater. The Item property is set to this value.
commandSource
The command source. The CommandSource property is set to this value.
originalArgs
The original event arguments.

Remarks

The following table shows initial property values for an instance of RepeaterCommandEventArgs.

Property Initial Value
Item item parameter
CommandSource commandSource parameter

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also

RepeaterCommandEventArgs Class | RepeaterCommandEventArgs Members | System.Web.UI.WebControls Namespace | RepeaterItem

Show: