method ExplorerBar.Refresh ()
Refreshes the control.

TypeDescription

Use the Refresh method to force repainting the control. Use the BeginUpdate and EndUpdate methods to maintain performances when adding new items and groups to the control. Use the hWnd property to get the handle of the control's window.

The following VB sample calls the Refresh method:

ExplorerBar1.Refresh

The following C++ sample calls the Refresh method:

m_explorerbar.Refresh();

The following VB.NET sample calls the Refresh method:

AxExplorerBar1.CtlRefresh()

In VB.NET the System.Windows.Forms.Control class has already a Refresh method, so the CtlRefresh method should be called.

The following C# sample calls the Refresh method:

axExplorerBar1.CtlRefresh();

In C# the System.Windows.Forms.Control class has already a Refresh method, so the CtlRefresh method should be called.

The following VFP sample calls the Refresh method:

thisform.ExplorerBar1.Object.Refresh()