Skip to main content
Version: 4.1

DataRepeaterItemValueEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Provides data for the ItemValueNeeded and ItemValuePushed events.

public class DataRepeaterItemValueEventArgs : EventArgs

Constructors

Instance member DataRepeaterItemValueEventArgs(itemIndex, control, propertyName, value)

Initializes a new instance of the DataRepeaterItemValueEventArgs class.

NameTypeDescription
itemIndexInt32The index of the DataRepeaterItem that contains the control that is raising the event.
controlControlThe child control that is raising the event.
propertyNameStringThe property of the control that has changed or that needs data.
valueObjectThe property value that has changed.

Properties

Instance member Control

Control: Gets the child control of a DataRepeaterItem that is raising the ItemValueNeeded or ItemValuePushed event.

Instance member ItemIndex

Int32: Gets the index of the DataRepeaterItem that contains the control that is raising the ItemValueNeeded or ItemValuePushed event.

Instance member PropertyName

String: Gets the name of the data-bound property of the control that is raising a ItemValueNeeded or ItemValuePushed event.

Instance member Value

Object: Gets the property value that has changed to raise a ItemValueNeeded or ItemValuePushed event.

Used By

NameDescription
DataRepeaterItemValueEventHandlerRepresents the method that will handle the ItemValueNeeded and ItemValuePushed events.