The x-coordinate of the point at which to begin searching.
The x-coordinate of the point at which to begin searching.





In This Topic

GetItemAt Method (ThumbnailEx)

In This Topic
Returns the index of the item at the specified location.
Syntax
'Declaration
 
Public Function GetItemAt( _
   ByVal X As Double, _
   ByVal Y As Double _
) As Integer
public int GetItemAt( 
   double X,
   double Y
)
public function GetItemAt( 
    X: Double;
    Y: Double
): Integer; 
public function GetItemAt( 
   X : double,
   Y : double
) : int;
public: int GetItemAt( 
   double X,
   double Y
) 
public:
int GetItemAt( 
   double X,
   double Y
) 

Parameters

X
The x-coordinate of the point at which to begin searching.
Y
The x-coordinate of the point at which to begin searching.

Return Value

If success returns the item index, value between 0 and ItemCount - 1. Otherwise returns -1: No item is available at the specified position.
See Also