1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
<HTML>
<HEAD>
<STYLE type="text/css">
H1 {color: black }
H2 {color: maroon }
H3 {color: #007090 }
A.head:link {color: #0060a0 }
A.head:visited {color: #3040c0 }
A.head:active {color: white }
A.head:hover {color: yellow }
A.red:link {color: red }
A.red:visited {color: maroon }
A.red:active {color: yellow }
</STYLE>
</HEAD>
<TITLE>Magic-7.3 Command Reference</TITLE>
<BODY BACKGROUND=graphics/blpaper.gif>
<H1> <IMG SRC=graphics/magic_title2.gif ALT="Magic VLSI Layout Tool Version 7.3">
<IMG SRC=graphics/magic_OGL_sm.gif ALIGN="top" ALT="*"> </H1>
<H2>suspendall</H2>
<HR>
Suspend normal display refresh on all windows until the invocation
of a corresponding <B>resumeall</B> command.
<HR>
<H3>Usage:</H3>
<BLOCKQUOTE>
<B>suspendall</B> <BR><BR>
</BLOCKQUOTE>
<H3>Summary:</H3>
<BLOCKQUOTE>
The <B>suspendall</B> command is a script that invokes the command
<B>update suspend</B> on all layout windows. It is used in
conjunction with the <B>resumeall</B> command and is intended
for use in Tcl scripts that perform multiple manipulations on
layout in a window, where it is desired to have the entire
display refresh at one time at the end of the script rather than
for each command within the script. <P>
Because the <B>update</B> command can be nested, calls to
<B>suspendall</B> and <B>resumeall</B> are likewise nested.
<B>resumeall</B> does not resume the window refresh until
it has been called the same number of times as <B>suspendall</B>
was called.
</BLOCKQUOTE>
<H3>Implementation Notes:</H3>
<BLOCKQUOTE>
<B>suspendall</B> is implemented as a Tcl procedure in the "tools"
script.
</BLOCKQUOTE>
<H3>See Also:</H3>
<BLOCKQUOTE>
<A HREF=resumeall.html><B>resumeall</B></A> <BR>
<A HREF=update.html><B>update</B></A> <BR>
</BLOCKQUOTE>
<P><IMG SRC=graphics/line1.gif><P>
<TABLE BORDER=0>
<TR>
<TD> <A HREF=commands.html>Return to command index</A>
</TR>
</TABLE>
<P><I>Last updated:</I> October 8, 2004 at 1:24am <P>
</BODY>
</HTML>
|