Fills in the retrieval arguments array based on names of the page variables that are passed.
PSDataWindowClass object
DWObject.FillRetrievalArgs(variable[ ] arguments)
Argument |
Description |
---|---|
DWObject |
A variable that contains a reference to an instance of PSDataWindowClass |
variable |
An array for String variables to use as retrieval arguments |
Retrieval arguments
At runtime FillRetrievalArgs adds the values of the named variables to the array in the order in which they are passed. If a value for a variable is not found, then an empty string “ “ is added to the array.
In the following code, the retrieval argument array is filled with “MyParam1” and “MyParam2” for the DataWindow object named “htmlDwObj1”:
htmlDwObj1.FillRetrievalArgs("MyParam1", "MyParam2");