ESRI.ArcGIS.ADF.Web.UI.WebControls
CreateParameterControls Method
See Also 
ESRI.ArcGIS.ADF.Web.UI.WebControls Namespace > UIParameterPanelUtility Class : CreateParameterControls Method




parameter
The parameter for which UI should be created
parameterName
The default name of the parameter
textBox
The created text box, if parameter has no choices.
listBox
The created list box, if parameter has choices.
password
Is this a password field?
table
The table in which the parameter should be created.
Creates the UI for a parameter

Syntax

Visual Basic (Declaration) 
Public Shared Function CreateParameterControls( _
   ByVal parameter As UIParameter, _
   ByVal parameterName As String, _
   ByRef textBox As TextBox, _
   ByRef listBox As DropDownList, _
   ByVal password As Boolean, _
   ByRef table As Table _
) As List(Of HtmlGenericControl)
Visual Basic (Usage)Copy Code
Dim parameter As UIParameter
Dim parameterName As String
Dim textBox As TextBox
Dim listBox As DropDownList
Dim password As Boolean
Dim table As Table
Dim value As List(Of HtmlGenericControl)
 
value = UIParameterPanelUtility.CreateParameterControls(parameter, parameterName, textBox, listBox, password, table)
C# 
public static List<HtmlGenericControl> CreateParameterControls( 
   UIParameter parameter,
   string parameterName,
   out TextBox textBox,
   out DropDownList listBox,
   bool password,
   ref Table table
)

Parameters

parameter
The parameter for which UI should be created
parameterName
The default name of the parameter
textBox
The created text box, if parameter has no choices.
listBox
The created list box, if parameter has choices.
password
Is this a password field?
table
The table in which the parameter should be created.

Return Value

The labels (spans) that are created.

See Also

© 2010 All Rights Reserved.