qck.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
AutoRedraw Property
  Summary  Details  Example                Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
 Determines whether or not the background image of a form or picture box
 is "persistent" (automatically repainted when necessary).
 
    [form.][picturebox.]AutoRedraw[ = boolean%]
 
    ■ boolean%     Valid settings are:
 
                   Value       Description
                   ═════════   ═════════════════════════════════════════════
                   True (-1)   Enables automatic repainting of a form or
                               picture box. Print output is written to the
                               screen and to an image stored in memory. The
                               object does not receive Paint events; it is
                               repainted when necessary, using the memory
                               image.
                   False (0)   (Default) Disables automatic repainting of an
                               object and writes print output only to the
                               screen. The Paint event is invoked when
                               necessary to repaint the object.
 
 Applies To
    Form                             Picture Box Control
 
 See Also
    AutoSize Property                Paint Event
    REFRESH Method