(redraw [ename [mode]])


Redraw the viewport or just a single entity.


This function redraws (or refreshes) the entire graphic display screen, or a single entity. Any temporary graphics present (such as those drawn with the grdraw function) disappear with this function.

If an ename (short for entity name) argument is entered, that entity is displayed differently, depending on the value specified in the mode argument:

Mode Meaning
1 Perform a standard redraw.
2 Blank the entity from the screen (a reverse redraw).
3 Highlight redraw (system variable HIGHLIGHT).
4 Do not highlight.

When these values are entered as negative numbers, the function affects only the main part of a complex element (for example, a block or polyline). The sub-elements are not affected. This function always returns nil.

Examples

Code Result

(redraw)

Redraws entire screen.

(redraw en1)

Redraws selected entity.

(redraw en1 2)

Blanks out the selected entity.

Tell me about...

(graphscr)

(grclear)

LISP Compatibility

Programming Overview of LISP (LISt Processing) Language