method ExFileView.Refresh ()

Refreshes the control.

TypeDescription

The Refresh method refreshes the control's content. Use the Apply method to apply rules to the current list.

The following VB sample calls the Refresh method:

ExFileView1.Refresh

The following C++ sample calls the Refresh method:

m_fileview.Refresh();

The following VB.NET sample calls the Refresh method:

AxExFileView1.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:

axExFileView1.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.ExFileView1.Object.Refresh()