axlDeleteOutputsColumn
axlDeleteOutputsColumn(x_mainSDB t_columnName) =>t/nil
Description
Deletes a user-defined column from the Outputs table.
Arguments
|
Name of the user-defined column to be deleted from the Outputs table |
Value Returned
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