geSelectPoint
geSelectPoint( [w_windowId] [l_point] ) => t / nil
Description
Uses the given point to select the object. If there is no object at that location, no object is selected and nil is returned.
It is recommended that geAddSelectPoint be used in place of this function.
Arguments
Value Returned
Examples
Selects the object at 70x 70y in the current window.
geSelectPoint( hiGetCurrentWindow() list(70 70) )
Interactive Function
geSelectPoint(
[ w_windowId ]
)
=> t / nil
Enter this function with only the window ID argument. The system prompts you to point to the object to add to the selection and returns t. If w_windowId is not specified, the current window is used.
Related Topics
Return to top