asp.net.ph

RepeaterItemEventArgs Constructor

System.Web.UI.WebControls Namespace   RepeaterItemEventArgs Class


Initializes a new instance of the RepeaterItemEventArgs class.

[ VB ]
Public Sub New ( _
   ByVal item As RepeaterItem _
)

[ C# ]
public RepeaterItemEventArgs (
   RepeaterItem item
);

[ C++ ]
public: RepeaterItemEventArgs (
   RepeaterItem* item
);

[ JScript ]
public function RepeaterItemEventArgs (
   item : RepeaterItem
);

Parameters

item
The RepeaterItem associated with the event. The Item property is set to this value.

Remarks

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

Property Initial Value
Item The value of the item parameter.

Example

The following example demonstrates how to initialize a new instance of the RepeaterItemEventArgs class.

void Item_Created ( Object src, RepeaterItemEventArgs e ) {
   RepeaterItemEventArgs item_arg = new RepeaterItemEventArgs ( e.Item );
}
  C# VB

See Also

RepeaterItemEventArgs Members Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph