BaseControlArray.ISupportInitialize.BeginInit Method

Definition

Begins the initialization of the control.

 virtual void BeginInit() = System::ComponentModel::ISupportInitialize::BeginInit;
void ISupportInitialize.BeginInit ();
abstract member BeginInit : unit -> unit
override this.BeginInit : unit -> unit
Sub BeginInit () Implements ISupportInitialize.BeginInit

Implements

Remarks

Design environments typically use this method to start the initialization of a component that is used on a form or used by another component. The ISupportInitialize.EndInit() method ends the initialization. Using the BeginInit and ISupportInitialize.EndInit() methods prevents the control from being used before it is fully initialized. The initialization occurs at run time.

Note

Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.

Applies to