Spread Windows Forms 12.0 Product Documentation
TabStripInfo Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > HitTestInformation Class : TabStripInfo Property
Gets more detailed hit test information for the tab strip.
Syntax
'Declaration
 
Public ReadOnly Property TabStripInfo As TabStripHitTestInformation
'Usage
 
Dim instance As HitTestInformation
Dim value As TabStripHitTestInformation
 
value = instance.TabStripInfo
public TabStripHitTestInformation TabStripInfo {get;}

Property Value

TabStripHitTestInformation object containing the hittest information for the tab strip
Remarks
This example returns the button from the tab strip that the user clicks.
Example
This example returns the button from the tab strip that the user clicks.
void fpSpread1SheetTabClick(object sender, SheetTabClickEventArgs e)
{
      Rectangle r = fpSpread1.GetRootWorkbook().GetTabStripRectangle();
      FarPoint.Win.Spread.HitTestInformation hti;
      hti = fpSpread1.HitTest(r.X, r.Y);
      if (hti.Type == HitTestType.TabStrip)
      {
            MessageBox.Show(hti.TabStripInfo.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
      hti = FpSpread1.HitTest(r.X, r.Y)
      If hti.Type = HitTestType.TabStrip Then
            MsgBox(hti.TabStripInfo.Button)
      End If
End Sub
See Also

Reference

HitTestInformation Class
HitTestInformation Members