IActiveDesigner.GetRuntimeClassID Method
Retrieves the class identifier (CLSID) for the runtime portion of the ActiveX designer. Designers generally have separate runtime and design time components.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetRuntimeClassID ( _
<OutAttribute> ByRef pclsid As Guid _
) As Integer
int GetRuntimeClassID(
out Guid pclsid
)
int GetRuntimeClassID(
[OutAttribute] Guid% pclsid
)
abstract GetRuntimeClassID :
pclsid:Guid byref -> int
function GetRuntimeClassID(
pclsid : Guid
) : int
Parameters
pclsid
Type: Guid%[out] Pointer to the CLSID of the runtime portion of the designer.
Return Value
Type: Int32
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
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.