Nota:
El acceso a esta página requiere autorización. Puede intentar iniciar sesión o cambiar directorios.
El acceso a esta página requiere autorización. Puede intentar cambiar los directorios.
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
'Declaración
Function GetRuntimeClassID ( _
<OutAttribute> ByRef pclsid As Guid _
) As Integer
'Uso
Dim instance As IActiveDesigner
Dim pclsid As Guid
Dim returnValue As Integer
returnValue = instance.GetRuntimeClassID(pclsid)
int GetRuntimeClassID(
out Guid pclsid
)
int GetRuntimeClassID(
[OutAttribute] Guid% pclsid
)
abstract GetRuntimeClassID :
pclsid:Guid byref -> int
function GetRuntimeClassID(
pclsid : Guid
) : int
Parameters
- pclsid
Type: System.Guid%
[out] Pointer to the CLSID of the runtime portion of the designer.
Return Value
Type: System.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.