DataRepeaterItemValueEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the ItemValueNeeded and ItemValuePushed events.
- C#
- VB.NET
public class DataRepeaterItemValueEventArgs : EventArgs
Public Class DataRepeaterItemValueEventArgs
Inherits EventArgs
Constructors
DataRepeaterItemValueEventArgs(itemIndex, control, propertyName, value)
Initializes a new instance of the DataRepeaterItemValueEventArgs class.
| Name | Type | Description |
|---|---|---|
| itemIndex | Int32 | The index of the DataRepeaterItem that contains the control that is raising the event. |
| control | Control | The child control that is raising the event. |
| propertyName | String | The property of the control that has changed or that needs data. |
| value | Object | The property value that has changed. |
Properties
Control
Control: Gets the child control of a DataRepeaterItem that is raising the ItemValueNeeded or ItemValuePushed event.
ItemIndex
Int32: Gets the index of the DataRepeaterItem that contains the control that is raising the ItemValueNeeded or ItemValuePushed event.
PropertyName
String: Gets the name of the data-bound property of the control that is raising a ItemValueNeeded or ItemValuePushed event.
Value
Object: Gets the property value that has changed to raise a ItemValueNeeded or ItemValuePushed event.
Used By
| Name | Description |
|---|---|
| DataRepeaterItemValueEventHandler | Represents the method that will handle the ItemValueNeeded and ItemValuePushed events. |