Save Method (SchematicSheetDocument Object)

Scope: Schematic editor - Embedded symbol editor (ESE)

Object: SchematicSheetDocument Object

Prerequisites: Symbol opened to edition from Library Manager (non-local symbol)

Saves changes made in the embedded symbol editor to a non-local symbol.

Usage

SchematicSheetDocument.Save()

Arguments

None

Examples

Set app = CreateObject("Viewdraw.Application")
Scripting.AddTypeLibrary("Viewdraw.Application")

run_ESE = "-lmc C:\MentorGraphics\EEVX.2.3\SDD_HOME\standard\examples\"
  + "SampleLib2007\SymbolLibs -partition Discrete -- cap.1"

app.RunISE(run_ESE)

Set myDoc = app.ActiveDocument
Set myView = app.ActiveView
’Change the symbol
Set ese_symbol = myView.ActiveBlock
Call ese_symbol.AddArc(200,200,250,250,200,300)
’Save changes in the symbol
myDoc.Save