MetaTable.Initialize Method

Definition

Initializes data that may not be available when the constructor is called.

C#
protected internal virtual void Initialize();

Examples

The following example shows how to override the Initialize method in order to customize the initialization process.

C#
protected  override void Initialize() {  
    base.Initialize();  
    MyOverriddenInit();  
}  

Remarks

This method calls the Initialize method for each column in the MetaTable instance. This method cannot be called directly. To customize initialization, you can derive from this class and override the Initialize method. If you override this method, call the base control's Initialize method.

Applies to

Proizvod Verzije
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1