Get_user_option, Usage, Options – Altera Quartus II Scripting User Manual

Page 349: Description, Example, Get_user_option –219

Advertising
background image

Chapter 3: Tcl Packages & Commands

3–219

project

© July 2013

Altera Corporation

Quartus II Scripting Reference Manual

get_user_option

Usage

get_user_option -name <name>

Options

-name <name>: User option name

Description

Returns the user option value for the name specified by the "-name" option.

To get a list of all available user option names, use the "get_all_user_option_names" command.

Example

## Get the value for the user option
## "TALKBACK_ENABLED"
set value [get_user_option -name TALKBACK_ENABLED]
puts "TALKBACK_ENABLED = $value"

Advertising