Close
Closes a Graphic Component.
Syntax:
Void Close();
Close the Graphic Document from where it
was called. If this document have children documents opened, all graphics will
be closed.
Void Close(String GraphicName );
Close a Graphic Document passed in the
parameter. If this document have children documents opened, all graphics will
be closed.
Params:
String GraphicName : A String parameter containing the Graphic Document name that will be closed.
Example:
Close the graphic document named 'main'.
SVGraphics.Close("main");
|