Initialize Method
Description
Initialization is generally performed by the infrastructure. Use this method after confirming the need with Support.
Syntax
Visual Basic
Public Sub Initialize( _
   Optional ByVal StartClose As String = "<%", _
   Optional ByVal EndClose As String = "%>", _
   Optional ByVal TypeClose As String = "?", _
   Optional ByVal MaxLen As Long = -1, _
   Optional ByVal DefaultType As String = "string" _
) 
Parameters
StartClose
The token that marks the start of a parameter.
EndClose
The token that marks the end of a parameter.
TypeClose
The token that marks a value to be replaced.
MaxLen
Not in use. The default is always used. -1 means there is no maximum length.
DefaultType
Not in use. Always "String"
Remarks
Several step parameters can be assigned to a step. The text parser is used to identify each parameter. By default, a parameter has format <?> .
See Also