setDataPos
Top  Previous  Next

setDataPos ( string Name, integer X0, integer Y0 [, integer Sx, integer Sy ] )

Use this function to change the size and position of a data table the workspace.

Parameters
 
Name  
 
A string specifying the name (title) of a data table.  
 
X0, Y0  
 
Positive integers specifying the coordinates of the top left corner of the data window relative to the top left corner of ImageWarp's client area.  

Sx, Sy  
 
Optional positive integers specifying the new width and height of the data window. If these parameters are omitted, the window will maintain its current size.  
 
Error flags

ERR_OK  
 
The flag set if successful.  
 
ERR_FAILED  
 
The flag set if failed.  
 
Example

This set of statements opens a data table and moves it across the workspace:  
 
LoadData("C:/Program Files/imagewarp/Data/sample1.dbs")  
For J=0 To getWorkHeight()-200 Step 8  
For I=0 To getWorkWidth()-200 Step 8  
wait(50)  
setDataPos("sample1",I,J)  
Next  
For I=800-200 To 0 Step -8  
wait(50)  
setDataPos("sample1",I,J+4)  
Next  
Next