template <class T,REGENTRY * pdsRegArray>
class CComDesignerInvisAtRun :
public IOleObject, public CComDesignerBase <T,pdsRegArray>
Parameters
T
Your class, derived from CComDesignerBase.
pdsRegArray
Pointer to the REGENTRY array previously set up by the registration macros.
CComDesignerInvisAtRun provides the default implementation of a run-time object that does not present a visual user interface. In essence, the class implements IOleObject.
#include <adruntime.h>
Methods
Member | Description |
CComDesignerInvisAtRun | Constructor. |
GetClientSite | Returns a pointer to the designer's client site in its container. |
GetMiscStatus | Returns OLE miscellaneous status bits. |
GetUserClassID | Returns the class ID of the run-time object. |
SetClientSite | Sets the designer's site within its container. |
CComDesignerInvisAtRun defines only those methods of IOleObject that are required for a designer run-time object that does not have a visual user interface. All other methods return E_NOTIMPL.
See Also