Refreshes the control.
Type | Description |
The Refresh method refreshes the control's content.
The following VB sample calls the Refresh method:
CascadeFile1.Refresh
The following C++ sample calls the Refresh method:
m_cascadefile.Refresh();
The following VB.NET sample calls the Refresh method:
AxCascadeFile1.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:
axCascadeFile1.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.CascadeFile1.Object.Refresh()