Spread Windows Forms 12.0 Product Documentation
InRowPanel Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > RangeGroupHitTestInformation Class : InRowPanel Property
Gets whether the location refers to an outline (range group) row panel area.
Syntax
'Declaration
 
Public ReadOnly Property InRowPanel As Boolean
'Usage
 
Dim instance As RangeGroupHitTestInformation
Dim value As Boolean
 
value = instance.InRowPanel
public bool InRowPanel {get;}
Example
The example returns whether the location refers to range group row panel area.
private void fpSpread1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e) 
{
FarPoint.Win.Spread.RangeGroupHitTestInformation rght;
FarPoint.Win.Spread.HitTestInformation ht;
ht = fpSpread1.HitTest(e.X, e.Y);
rght = ht.RangeGroupInfo;
bool b = rght.InRowBar;
bool b2 = rght.InRowPanel;
MessageBox.Show(b.ToString() + " - " + b2.ToString());
}
Private Sub FpSpread1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles FpSpread1.MouseDown
Dim rght As FarPoint.Win.Spread.RangeGroupHitTestInformation
Dim ht As FarPoint.Win.Spread.HitTestInformation
ht = FpSpread1.HitTest(e.X, e.Y)
rght = ht.RangeGroupInfo
Dim b As Boolean = rght.InRowBar
Dim b2 As Boolean = rght.InRowPanel
MsgBox(b.ToString() & " - " & b2.ToString())
End Sub
See Also

Reference

RangeGroupHitTestInformation Class
RangeGroupHitTestInformation Members