wpQueryConcurrentView
Appearance
This instance method is called to query the multiple, concurrent view behavior of an object.
Syntax
_wpQueryConcurrentView(somSelf)
Parameters
- somSelf (WPObject *) - input
- Pointer to the object on which the method is being invoked.
- Points to an object of class WPObject.
Returns
- ulView (ULONG) - returns
- Flag indicating the concurrent view mode.
- Possible values are described in the following list:
- CCVIEW_ON Concurrent view mode is set to on.
- CCVIEW_OFF Concurrent view mode is set to off.
- CCVIEW_DEFAULT Concurrent view mode is set to the system default.
How to Override
This method should not be overridden.
Usage
This method is not covered in the provided text.
Remarks
This method is not covered in the provided text.
Example Code
#define INCL_WINWORKPLACE
#include <os2.h>
WPObject *somSelf; /* Pointer to the object on which the method is being invoked. */
ULONG ulView; /* Flag indicating the concurrent view mode. */
ulView = _wpQueryConcurrentView(somSelf);
/* Example code demonstrating a possible override, as provided in the source: */
SOM_Scope ULONG SOMLINK myfold_wpQueryConcurrentView(MYFOLDER *somSelf )
{
/* MYFOLDERData *somThis = MYFOLDERGetData(somSelf); */
MYFOLDERMethodDebug("MYFOLDER","myfold_wpQueryConcurrentView");
return CCVIEW_ON;
}