Type | Description |
The Refresh method refreshes and repaints the control. The BeginUpdate/EndUpdate methods keeps performance of the control while multiple changes require to be applied to the control.
The following VB sample updates the control:
HTML1.Refresh
The following C++ sample updates the control:
m_html.Refresh();
The following VB.NET sample updates the control:
AxHTML1.CtlRefresh()
The following C# sample updates the control:
axHTML1.CtlRefresh();
The following VFP sample updates the control:
With thisform.HTML1 .Object.Refresh EndWith