Spread Windows Forms 12.0 Product Documentation
GetFilterBarRectangle Method (SpreadView)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadView Class : GetFilterBarRectangle Method
Viewport column index
Gets the rectangle of the filter bar.
Syntax
'Declaration
 
Public Function GetFilterBarRectangle( _
   ByVal columnViewportIndex As Integer _
) As Rectangle
'Usage
 
Dim instance As SpreadView
Dim columnViewportIndex As Integer
Dim value As Rectangle
 
value = instance.GetFilterBarRectangle(columnViewportIndex)
public Rectangle GetFilterBarRectangle( 
   int columnViewportIndex
)

Parameters

columnViewportIndex
Viewport column index

Return Value

Rectangle of the filter bar.
Example
This example uses the GetFilterBarRectangle method.
FarPoint.Win.Spread.SpreadView sv;
sv = fpSpread1.GetRootWorkbook();
listBox1.Items.Add(sv.GetFilterBarRectangle(0));
Dim sv As FarPoint.Win.Spread.SpreadView
sv = fpSpread1.GetRootWorkbook()
ListBox1.Items.Add(sv.GetFilterBarRectangle(0))
See Also

Reference

SpreadView Class
SpreadView Members