DataRepeater.OnCreateControl Method

Raises the CreateControl method.

Namespace:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntax

'Declaration
Protected Overrides Sub OnCreateControl
protected override void OnCreateControl()
protected:
virtual void OnCreateControl() override
abstract OnCreateControl : unit -> unit  
override OnCreateControl : unit -> unit
protected override function OnCreateControl()

Remarks

The CreateControl method forces a handle to be created for the control and its child controls. This method is used when you need a handle immediately for manipulation of the control or its children; just calling a control's constructor does not create the Handle.

CreateControl does not create a control handle if the control's Visible property is False. You can either call the CreateHandle method or access the Handle property to create the control's handle regardless of the control's visibility, but in this case, no window handles are created for the control's children.

.NET Framework Security

See Also

Reference

DataRepeater Class

Microsoft.VisualBasic.PowerPacks Namespace

Other Resources

Introduction to the DataRepeater Control (Visual Studio)