method ChartView.Refresh ()
Refreshes the control.

TypeDescription

The Refresh method refreshes the control. The BeginUpdate method prevents the control from painting until the EndUpdate method is called. Use the Font property to specify the control's font. Use the hWnd property to get the handle of the control's window.

The following VB sample calls the Refresh method:

ChartView1.Refresh

The following C++ sample calls the Refresh method:

m_chartview.Refresh();

The following VB.NET sample calls the Refresh method:

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

axChartView1.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.ChartView1.Object.Refresh()