DataViewSetInputParameter method (WinStudio scripts)

Applies to

IWSFormComponent interface, DataView components

Description

Used to set the values of input parameters for a DataView that has input parameters defined.

Syntax

object.DataViewSetInputParameter(sequence, string)

Part Description
object Required. A reference to a valid DataView component object.
sequence Required. An integer that indicates the Sequence number of the input parameter that is being set.
string Required. A string that indicates the value to which the input parameter is to be set.

Example

Sub Main()  
   ThisForm.Components("DataView1").DataViewSetInputParameter(0, ThisForm.Variables("StartingItem").Value)
End Sub