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


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

Parameters

columnViewportIndex
Viewport column index

Return Value

Rectangle object containing the cell rectangle of the header of the specified column
Example
This example uses the GetColumnHeaderRectangle method.
FarPoint.Win.Spread.SpreadView sv;     
sv = fpSpread1.GetRootWorkbook();
listBox1.Items.Add(sv.GetColumnHeaderRectangle(0));
Dim sv As FarPoint.Win.Spread.SpreadView
sv = fpSpread1.GetRootWorkbook()
ListBox1.Items.Add(sv.GetColumnHeaderRectangle(0))
See Also

Reference

SpreadView Class
SpreadView Members

User-Task Documentation

Getting Information of a Clicked Cell