UpdatePanelTriggerCollection.SetItem(Int32, UpdatePanelTrigger) Method

Definition

Replaces the trigger at the specified index in the UpdatePanelTriggerCollection object.

protected:
 override void SetItem(int index, System::Web::UI::UpdatePanelTrigger ^ item);
protected override void SetItem (int index, System.Web.UI.UpdatePanelTrigger item);
override this.SetItem : int * System.Web.UI.UpdatePanelTrigger -> unit
Protected Overrides Sub SetItem (index As Integer, item As UpdatePanelTrigger)

Parameters

index
Int32

The zero-based index of the trigger to replace.

item
UpdatePanelTrigger

The new value for the trigger at the specified index. The value can be null for reference types.

Remarks

You can replace an element in the UpdatePanelTriggerCollection object with an AsyncPostBackTrigger object, a PostBackTrigger object, or any custom trigger that derives from UpdatePanelTrigger.

Applies to

See also