DataControlFieldCollection.FieldsChanged Evento

Definição

Ocorre quando os campos na coleção são alterados, geralmente como resultado de uma chamada de método Clear(), Insert(Int32, DataControlField), Remove(DataControlField) ou Add(DataControlField).Occurs when the fields in the collection change, usually as the result of a Clear(), Insert(Int32, DataControlField), Remove(DataControlField) or Add(DataControlField) method call. Esse evento também é acionado a qualquer momento que um DataControlField na coleção aciona seu evento FieldChanged.This event is also raised anytime a DataControlField in the collection raises its FieldChanged event.

public:
 event EventHandler ^ FieldsChanged;
public event EventHandler FieldsChanged;
member this.FieldsChanged : EventHandler 
Public Custom Event FieldsChanged As EventHandler 
Public Event FieldsChanged As EventHandler 

Tipo de evento

EventHandler

Comentários

O FieldsChanged evento é gerado quando o Clear Insert método, ou Remove é chamado.The FieldsChanged event is raised when the Clear, Insert, or Remove method is called.

Para obter mais informações sobre como lidar com eventos, consulte manipulando e gerando eventos.For more information about how to handle events, see Handling and Raising Events.

Aplica-se a