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

axlDeleteOutputsColumn

axlDeleteOutputsColumn(
x_mainSDB
t_columnName
)
=> t / nil

Description

Deletes a user-defined column from the Outputs table.

Arguments

x_mainSDB

Handle to the main setup database.

t_columnName

Name of the user-defined column to be deleted from the Outputs table

Value Returned

t

Successful deletion of the specified column.

nil

Unsuccessful operation.

Examples

The following example deletes a user-defined column, Comments.

session = axlGetWindowSession()
=> "session0"
x_mainSDB = axlGetMainSetupDB(session)
=> 1001
axlGetUserDefinedOutputsColumns(x_mainSDB)
=>("Comments" "Spec Description")
axlDeleteOutputsColumn( x_mainSDB "Comments")
=>t

Return to top
 ⠀
X