ESRI.ArcGIS.ADF.Web
GraphicsLayer Constructor(String,DataColumn[],String)
See Also 
ESRI.ArcGIS.ADF.Web.Display.Graphics Namespace > GraphicsLayer Class > GraphicsLayer Constructor : GraphicsLayer Constructor(String,DataColumn[],String)


tableName
The name to give the table.
columns
An array of DataColumns to add to the table.
graphicsIdColumnName
The name of the column containing the graphics ID primary key. This must be of type int. If null, a column will be created with a default name.
GraphicsLayer constructor.

Syntax

Visual Basic (Declaration)  
Public Function New( _
   ByVal tableName As String, _
   ByVal columns() As DataColumn, _
   ByVal graphicsIdColumnName As String _
)
Visual Basic (Usage) Copy Code
Dim tableName As String
Dim columns() As DataColumn
Dim graphicsIdColumnName As String
 
Dim instance As GraphicsLayer(tableName, columns, graphicsIdColumnName)
C#  
public GraphicsLayer( 
   string tableName,
   DataColumn[] columns,
   string graphicsIdColumnName
)

Parameters

tableName
The name to give the table.
columns
An array of DataColumns to add to the table.
graphicsIdColumnName
The name of the column containing the graphics ID primary key. This must be of type int. If null, a column will be created with a default name.

Requirements

Target Platforms:Windows XP Professional, Windows Server 2003 family

See Also