SECFullScreenView::SetBarStateArray
BOOLSECFullScreenView::SetBarStateArray(SECFSBarState*pBarArray, intnCount)
Specifies the list of control bars that are displayed in the full screen mode. Call this function before the SetFSMode call. SECFSBarState is a helper structure that can be used for setting the full screen view control bars. The structure has the following form:
typedef struct tagSECFSBarState { CControlBar* pCtrlBar; BOOL bFSModeOnly; } SECFSBarState;
Members: pCtrlBar - Points to a control bar. bFSModeOnly - Setting this to TRUE will display the control bar in the full screen mode even if it is currently hidden. The bar will be hidden when full screen view terminates.
Defined in: FSView.cpp
Return Value
Returns TRUE on success; otherwise FALSE.
Parameters
pBarArray
Pointer to an array of SECFSBarState structures.
nCount
Number of elements in the array.
See Also