Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

axlAddOutputsColumn

axlAddOutputsColumn(
x_mainSDB
t_columnName
)
=> t / nil

Description

Adds a new user-defined column to the outputs table.

Arguments

x_mainSDB

Handle to the main setup database.

t_columnName

Name of the user-defined column to be added to the outputs table

Value Returned

t

Successful addition of the specified column.

nil

Unsuccessful operation

Examples

The following example demonstrates how to add a user-defined column to the Outputs table.

session = axlGetWindowSession()
=> "session0"
x_mainSDB = axlGetMainSetupDB(session)
=> 1001
axlAddOutputsColumn( x_mainSDB "Spec Description")
=>t

Return to top
 ⠀
X