Spread Windows Forms 12.0 Product Documentation
GrabHandleFromPoint Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.DrawingSpace Namespace > PSObject Class : GrabHandleFromPoint Method
Point
Returns the grab handle from the specified point.
Syntax
'Declaration
 
Public Overridable Function GrabHandleFromPoint( _
   ByVal pt As Point _
) As Integer
'Usage
 
Dim instance As PSObject
Dim pt As Point
Dim value As Integer
 
value = instance.GrabHandleFromPoint(pt)
public virtual int GrabHandleFromPoint( 
   Point pt
)

Parameters

pt
Point

Return Value

Integer value of the point of the grab handle
Example
This example uses the GrabHandleFromPoint method.
fpSpread1.Sheets[0].Cells[0, 0].Text = "test";
FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape test = new FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape();
test.Formula = "A1:A5";
fpSpread1.Sheets[0].AddShape(test, 2, 1);
listBox1.Items.Add(test.GrabHandleFromPoint(new Point(1, 1)));
fpSpread1.Sheets(0).Cells(0, 0).Text = "test"
Dim test As New FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape()
test.Formula = "A1:A5"
fpSpread1.Sheets(0).AddShape(test, 2, 1)
ListBox1.Items.Add(test.GrabHandleFromPoint(new Point(1, 1)))
See Also

Reference

PSObject Class
PSObject Members