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


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadView Class : ShowRow Method
Viewport row index
Row index in that viewport
New vertical position of row
Moves a row in the specified viewport to the specified position.
Syntax
'Declaration
 
Public Sub ShowRow( _
   ByVal rowViewportIndex As Integer, _
   ByVal row As Integer, _
   ByVal verticalPosition As VerticalPosition _
) 
'Usage
 
Dim instance As SpreadView
Dim rowViewportIndex As Integer
Dim row As Integer
Dim verticalPosition As VerticalPosition
 
instance.ShowRow(rowViewportIndex, row, verticalPosition)
public void ShowRow( 
   int rowViewportIndex,
   int row,
   VerticalPosition verticalPosition
)

Parameters

rowViewportIndex
Viewport row index
row
Row index in that viewport
verticalPosition
New vertical position of row
Remarks

This method scrolls the spreadsheet so that the specified row in the specified viewport appears in the specified position.

This method has no effect on the location or positioning of the active cell.

Example
This example uses the ShowRow method.
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
sv.AddViewport(0, 0);
sv.ShowRow(1, 4, FarPoint.Win.Spread.VerticalPosition.Top);
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook
sv.AddViewport(0, 0)
sv.ShowRow(1, 4, FarPoint.Win.Spread.VerticalPosition.Top)
See Also

Reference

SpreadView Class
SpreadView Members
ShowCell Method
ShowColumn Method

User-Task Documentation

Customizing the Position in the Display