ClipControls
This property controls how Visual FoxPro redraws the form and its contents when controls moving around or appearing and disappearing cause new areas to be exposed, or when Refresh or another event causes Paint to fire—this could happen by changing the size of a control, moving it, or changing the Z-order to move controls around from front to back.
Usage |
oObject.ClipControls = lSlowerVideo lSlowerVideo = oObject.ClipControls |
Parameter |
Value |
Meaning |
lSlowerVideo |
.T. |
The form is repainted in a slower, more reliable mode, where all objects are fully repainted. This is the default. |
.F. |
Screen objects revealed are repainted quickly, redrawing only those portions of the object newly revealed. |
Example |
frmForm.ClipControls = .T. |
See Also |