IsVisible Method
Applies To
fpSpread control
Description
Determines if the specified cell, column, or row is visible.
Syntax
C++
BOOL CSpreadSheet::IsVisible (long Col, long Row, BOOL Partial);
Visual Basic
fpSpread.IsVisible(ByVal Col As Long, ByVal Row As Long, ByVal Partial As Boolean) As Boolean
Parameters
The following parameters are available:
Parameter | Description |
---|---|
Col | Column number of cell |
Row | Row number of cell |
Partial | Set to True to consider partially displayed cells as visible (Otherwise, a cell must be entirely visible to be considered as visible.) |
Remarks
This method is called for the current sheet setting unless you first set the Sheet property to specify the sheet with which you want to work.
Return Type
True if the cell is visible; otherwise, False.
See Also
Sheet property