Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SpreadView Class / ShowActiveCell Method
New vertical position of cell
New horizontal position of cell
Example


In This Topic
    ShowActiveCell Method (SpreadView)
    In This Topic
    Moves the currently selected cell in the specified viewport to the specified position.
    Syntax
    'Declaration
     
    Public Sub ShowActiveCell( _
       ByVal verticalPosition As VerticalPosition, _
       ByVal horizontalPosition As HorizontalPosition _
    ) 
    'Usage
     
    Dim instance As SpreadView
    Dim verticalPosition As VerticalPosition
    Dim horizontalPosition As HorizontalPosition
     
    instance.ShowActiveCell(verticalPosition, horizontalPosition)
    public void ShowActiveCell( 
       VerticalPosition verticalPosition,
       HorizontalPosition horizontalPosition
    )

    Parameters

    verticalPosition
    New vertical position of cell
    horizontalPosition
    New horizontal position of cell
    Remarks

    This method scrolls the spreadsheet so that the active cell appears in the specified position of the display. For example, you may wish to move the active cell to the center of the component display.

    To set the active cell, refer to the SetActiveCell method.

    Example
    This example uses the ShowActiveCell method.
    FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
    sv.AddViewport(0, 0);
    sv.ShowActiveCell(FarPoint.Win.Spread.VerticalPosition.Bottom, FarPoint.Win.Spread.HorizontalPosition.Right);
    Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook
    sv.AddViewport(0, 0)
    sv.ShowActiveCell(FarPoint.Win.Spread.VerticalPosition.Bottom, FarPoint.Win.Spread.HorizontalPosition.Right)
    See Also