method Edit.Refresh ()
Refreshes the control.

TypeDescription

The Refresh method repaints the control.  If the control's EditType property is exSensitive or exHTML the latest changes to keywords or expressions collection will be updated too.

The following VB sample updates the control:

Edit1.Refresh

The following C++ sample updates the control:

m_edit.Refresh();

The following VB.NET sample updates the control:

AxEdit1.CtlRefresh()

The following C# sample updates the control:

axEdit1.CtlRefresh();

The following VFP sample updates the control:

With thisform.Edit1
	.Object.Refresh
EndWith