axlAddOutputsColumn
axlAddOutputsColumn(x_mainSDB t_columnName) =>t/nil
Description
Adds a new user-defined column to the outputs table.
Arguments
|
Name of the user-defined column to be added to the outputs table |
Value Returned
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