GlobalSheet Property

Description

Returns the first sheet in the design-time or run-time data table (global sheet).

Syntax

DataTable.GlobalSheet

Example

The following example uses the GlobalSheet property to return the global sheet of the design-time or run-time data table in order to add a parameter (column) to it.

ParamValue=DataTable.GlobalSheet.AddParameter("Time", "5:45")

You can also use this method to add a parameter to the global sheet (note that no value is returned).

DataTable.GlobalSheet.AddParameter "Time", "5:45"