DataControlFieldCollection.FieldsChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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. 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
Event Type
Remarks
The FieldsChanged event is raised when the Clear, Insert, or Remove method is called.
For more information about how to handle events, see Handling and Raising Events.