Get detailed information about a rubber-band mouse pick. The values must be within the VO window (0 to width-1 for left and right, 0 to height-1 for top and bottom).
[Visual Basic .NET] |
---|
Public Function RubberBandPickInfo( _ ByVal Left As Integer, _ ByVal Top As Integer, _ ByVal Right As Integer, _ ByVal Bottom As Integer _ ) As AgRubberBandPickInfoData |
[C#] |
---|
public AgRubberBandPickInfoData RubberBandPickInfo( int Left, int Top, int Right, int Bottom ); |
[Managed C++] |
---|
public: AgRubberBandPickInfoData^ RubberBandPickInfo( int Left, int Top, int Right, int Bottom ); |
[Java] |
---|
public AgRubberBandPickInfoData rubberBandPickInfo( int Left, int Top, int Right, int Bottom ); |
[Unmanaged C++] |
---|
public: HRESULT RubberBandPickInfo( OLE_XPOS_PIXELS Left, OLE_YPOS_PIXELS Top, OLE_XPOS_PIXELS Right, OLE_YPOS_PIXELS Bottom, AgRubberBandPickInfoData ** ppPickInfoData ); |
- Left
- Specifies the x-coordinate of the left edge of the rubber band rectangle in control coordinates.
- Top
- Specifies the y-coordinate of the top edge of the rubber band rectangle in control coordinates.
- Right
- Specifies the x-coordinate of the right edge of the rubber band rectangle in control coordinates.
- Bottom
- Specifies the y-coordinate of the bottom edge of the rubber band rectangle in control coordinates.
Returns an object of type AgRubberBandPickInfoData which contains the list of objects selected (if any).
The RubberBandPickInfo method returns extended information when the AdvancedPickMode Property is set to true.
[Visual Basic .NET] | ||
---|---|---|
|