IActiveDesigner.GetRuntimeClassID(Guid) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves the class identifier (CLSID) for the runtime portion of the ActiveX designer. Designers generally have separate runtime and design time components.
public:
int GetRuntimeClassID([Runtime::InteropServices::Out] Guid % pclsid);
public int GetRuntimeClassID (out Guid pclsid);
abstract member GetRuntimeClassID : Guid -> int
Public Function GetRuntimeClassID (ByRef pclsid As Guid) As Integer
Parameters
- pclsid
- Guid
[out] Pointer to the CLSID of the runtime portion of the designer.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From designer.idl:
HRESULT IActiveDesigner::GetRuntimeClassID(
[out] CLSID * pclsid
);