SSGetVisible Function
Applies To
fpSpread DLL control
Description
Returns if the specified cell, row, or column is visible.
Syntax
C
BOOL SSGetVisible(HWND hWnd, SS_COORD Col, SS_COORD Row, short Visible);
C++
BOOL TSpread::GetVisible(SS_COORD Col, SS_COORD Row, short Visible);
Parameters
The following parameters are available:
Parameter | Description | |
---|---|---|
hWnd | Window handle of the fpSpread control | |
Col | Column number of cell (Value can be SS_HEADER or SS_ALLCOLS.) |
|
Row | Row number of cell (Value can be SS_HEADER or SS_ALLROWS.) |
|
Visible | Indicates whether cell is completely or partially visible Can be one of the following values: |
|
Constant | Description | |
SS_VISIBLE_ALL | Entire cell is visible within the control window | |
SS_VISIBLE_PARTIAL | Cell is completely or partially visible within the control window |
Remarks
This function is applied to the current sheet setting unless you first call the SSSetSheet function to specify the sheet for which you are calling this function.
Return Value
TRUE if the specified cell is currently visible; FALSE otherwise.
See Also
SSGetAutoSizeVisible, SSSetAutoSizeVisible, SSSetSheet functions
ActiveX Correspondence
IsVisible method