RiTa
index
Name RiText.getPicked()
Class RiText
Description Returns all RiTexts that contain the point x,y or null if none do.

Note: this will return an array even if only one item is picked, therefore, you should generally use it as follows:

   RiText picked = null;
   RiText[] rts = RiText.getPicked(mx, my);
   if (rts != null)
 picked = rts[0];
 
 
Syntax
RiText.getPicked(x, y);
Returns rita.RiText[] - RiText[] 1 or more RiTexts containing the point, or null if none do.
Usage Web & Application    [static]
Related