Create a standard or child table.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal name As String,  _ 
   ByVal parent_tbl As String,  _ 
   ByVal fieldNames As String(),  _ 
   ByVal src As NetricsTableRecSrc _ 
)
C#
public NetricsTable(
   string name,
   string parent_tbl,
   string[] fieldNames,
   NetricsTableRecSrc src
)
C++
public:
 NetricsTable(
   String name,
   String parent_tbl,
   array<String>^ fieldNames,
   NetricsTableRecSrc src
) sealed 
J#
public NetricsTable(
   string name,
   string parent_tbl,
   string[] fieldNames,
   NetricsTableRecSrc src
)
JScript
public function NetricsTable(
   name : String,
   parent_tbl : String,
   fieldNames : String[],
   src : NetricsTableRecSrc
)

Parameters

name
The name of the table. Must be unique. In other commands, the table will be referred to by this name.
parent_tbl
Name of the parent of this table. If present the named table must exist and be a parent table, and this table is created as a child table. If this is null this table is created as a standard table.
fieldNames
User specified names for the fields of the the table. In other commands, fields will be referred to by these names
src
The RecSrc object which holds the records for this table (can be null to load an empty table)

See Also