
This method will test to see which row and column (if columns exit) a point belongs to.
Returns the following according to the situation:
The recommended convention is passing the control identifier directly:
Copy Code |
|---|
(Odcl_ListView_HitPointTest MyControlReference [as Reference] nX [as Integer] nY [as Integer]) |
An alternative convention is to identify the control by providing the project file, the dialog name and the control name:
Copy Code |
|---|
(Odcl_ListView_HitPointTest ProjectFile [as String] DialogName [as String] ControlName [as String] nX [as Integer] nY [as Integer]) |
Copy Code |
|---|
; Determine what we touch at this position (setq rValue (Odcl_ListView_HitPointTest MyProject_MyForm_MyControl 34 67)) |