DataGridColumn.Initialize 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.
Provides the base implementation to reset a column derived from the DataGridColumn class to its initial state.
public:
virtual void Initialize();
public virtual void Initialize ();
abstract member Initialize : unit -> unit
override this.Initialize : unit -> unit
Public Overridable Sub Initialize ()
Remarks
The Initialize method provides the base implementation to reset a column derived from the DataGridColumn class to its initial state. This method is not called directly. Instead, this method is inherited by a derived column class, which can then be used to reset a column of the derived type. You can optionally override this method in the derived class to provide a custom initialization routine. This base implementation of the Initialize method is often called from the overridden method to reset properties common to all column types derived from the DataGridColumn class. The Initialize method is usually called during data binding, prior to the first row being bound.
When the Initialize method is used, the design mode of the column is set to true
.
Note
This method is commonly used by control developers.