Partilhar via


Método IExtendedTypeLib.SetExtenderInfo (String, Type, UInt32)

 

Publicado: abril de 2016

Define as informações para o tipo de extensão na biblioteca de tipos estendida.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

int SetExtenderInfo(
    string lpstrDirectoryName,
    Type ptinfoExtender,
    uint dwReserved
)
int SetExtenderInfo(
    String^ lpstrDirectoryName,
    Type^ ptinfoExtender,
    unsigned int dwReserved
)
abstract SetExtenderInfo : 
        lpstrDirectoryName:string *
        ptinfoExtender:Type *
        dwReserved:uint32 -> int
Function SetExtenderInfo (
    lpstrDirectoryName As String,
    ptinfoExtender As Type,
    dwReserved As UInteger
) As Integer

Parâmetros

  • lpstrDirectoryName
    [in] Ponteiro para uma seqüência de caracteres que contém o caminho completo para escrever a biblioteca de tipo estendido.Use NULL se não salvar a biblioteca.
  • ptinfoExtender
    [in] Ponteiro para o ITypeInfo para o objeto de extensão.
  • dwReserved
    [in] Não usado.Use o zero (0) ou NULL.

Valor de retorno

Type: System.Int32

Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.

Comentários

COM assinatura

De objext.idl:

[C++]

HRESULT IExtendedTypeLib::SetExtenderInfo(
   [in] LPCOLESTR lpstrDirectoryName, 
   [in] ITypeInfo *ptinfoExtender, 
   [in] DWORD dwReserved
);

Consulte também

Interface IExtendedTypeLib
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo