DataTable.OnColumnChanged(DataColumnChangeEventArgs) Method
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.
Raises the ColumnChanged event.
protected public:
virtual void OnColumnChanged(System::Data::DataColumnChangeEventArgs ^ e);
protected:
virtual void OnColumnChanged(System::Data::DataColumnChangeEventArgs ^ e);
protected internal virtual void OnColumnChanged (System.Data.DataColumnChangeEventArgs e);
protected virtual void OnColumnChanged (System.Data.DataColumnChangeEventArgs e);
abstract member OnColumnChanged : System.Data.DataColumnChangeEventArgs -> unit
override this.OnColumnChanged : System.Data.DataColumnChangeEventArgs -> unit
Protected Friend Overridable Sub OnColumnChanged (e As DataColumnChangeEventArgs)
Protected Overridable Sub OnColumnChanged (e As DataColumnChangeEventArgs)
Parameters
A DataColumnChangeEventArgs that contains the event data.
Remarks
Raising an event invokes the event handler through a delegate. For an overview, see Handling and Raising Events.
Notes to Inheritors
When overriding OnColumnChanged(DataColumnChangeEventArgs) in a derived class, be sure to call the base class's OnColumnChanged(DataColumnChangeEventArgs) method.
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.