export_stack_to (::quartus::chip_planner)

The following table displays information for the export_stack_to Tcl command:

Tcl Package and Version

Belongs to ::quartus::chip_planner 2.0

Syntax export_stack_to [-h | -help] [-long_help] [-applied] [-file <file name> ] [ <position> ]
Arguments -h | -help Short help
-long_help Long help with examples and possible return values
-applied Whether to export only applied changes
-file <file name> Name of file to which the stack is exported
<position> Position
Description
Exports the the command stack to the specified position as
a Tcl script, CSV, or TXT file. If position is not specified,
exports the entire stack. The type of file is set by the
extension specified in the name argument.  If a .csv or .txt
extension is specified, a file of the specified type is
produced.
Otherwise, a Tcl script will be produced.
Example Usage
The following is a sample sequence of commands that
produces a Tcl script and a CSV file of the changes in the
Command Manager:

project_open <project_name>
read_netlist
export_stack_to -name new_tcl_file.tcl
export_stack_to -name new_tcl_file.csv
project_close
Return Value Code Name Code String Return
TCL_OK 0 INFO: Operation successful
TCL_ERROR 1 ERROR: Unable to find Chip Planner netlist. Read the netlist by using the read_netlist command.