Spread Windows Forms 12.0 Product Documentation
TabStripHitTestInformation Constructor
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > TabStripHitTestInformation Class : TabStripHitTestInformation Constructor
Creates new hit test information for the tab strip of the spreadsheet.
Syntax
'Declaration
 
Public Function New()
'Usage
 
Dim instance As New TabStripHitTestInformation()
public TabStripHitTestInformation()
Example
This example returns the button location.
void fpSpread1SheetTabClick(object sender, SheetTabClickEventArgs e)
{
      Rectangle r = fpSpread1.GetRootWorkbook().GetTabStripRectangle();
      FarPoint.Win.Spread.HitTestInformation hti;
      FarPoint.Win.Spread.TabStripHitTestInformation ti;
      hti = fpSpread1.HitTest(r.X, r.Y);
      ti = hti.TabStripInfo;
      if (hti.Type == HitTestType.TabStrip)
      {
            MessageBox.Show(ti.Button.ToString());
      }    
}
Private Sub FpSpread1SheetTabClick(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.SheetTabClickEventArgs)

      Dim r As Rectangle
      r = FpSpread1.GetRootWorkbook.GetTabStripRectangle()

      Dim hti As FarPoint.Win.Spread.HitTestInformation
      Dim ti As FarPoint.Win.Spread.TabStripHitTestInformation
      hti = FpSpread1.HitTest(r.X, r.Y)
      ti = hti.TabStripInfo
      If hti.Type = HitTestType.TabStrip Then
            MsgBox(ti.Button)
      End If
See Also

Reference

TabStripHitTestInformation Class
TabStripHitTestInformation Members