Método IVsProject3.AddItemWithSpecific (UInt32, VSADDITEMOPERATION, String, UInt32, String[], IntPtr, UInt32, Guid, String, Guid, VSADDRESULT )

 

Publicado: abril de 2016

Adiciona um item usando um editor específico.

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

Sintaxe

int AddItemWithSpecific(
    uint itemidLoc,
    VSADDITEMOPERATION dwAddItemOperation,
    string pszItemName,
    uint cFilesToOpen,
    string[] rgpszFilesToOpen,
    IntPtr hwndDlgOwner,
    uint grfEditorFlags,
    [InAttribute] ref Guid rguidEditorType,
    string pszPhysicalView,
    [InAttribute] ref Guid rguidLogicalView,
    VSADDRESULT[] pResult
)
int AddItemWithSpecific(
    unsigned int itemidLoc,
    VSADDITEMOPERATION dwAddItemOperation,
    String^ pszItemName,
    unsigned int cFilesToOpen,
    array<String^>^ rgpszFilesToOpen,
    IntPtr hwndDlgOwner,
    unsigned int grfEditorFlags,
    [InAttribute] Guid% rguidEditorType,
    String^ pszPhysicalView,
    [InAttribute] Guid% rguidLogicalView,
    array<VSADDRESULT>^ pResult
)
abstract AddItemWithSpecific : 
        itemidLoc:uint32 *
        dwAddItemOperation:VSADDITEMOPERATION *
        pszItemName:string *
        cFilesToOpen:uint32 *
        rgpszFilesToOpen:string[] *
        hwndDlgOwner:nativeint *
        grfEditorFlags:uint32 *
        rguidEditorType:Guid byref *
        pszPhysicalView:string *
        rguidLogicalView:Guid byref *
        pResult:VSADDRESULT[] -> int
Function AddItemWithSpecific (
    itemidLoc As UInteger,
    dwAddItemOperation As VSADDITEMOPERATION,
    pszItemName As String,
    cFilesToOpen As UInteger,
    rgpszFilesToOpen As String(),
    hwndDlgOwner As IntPtr,
    grfEditorFlags As UInteger,
    <InAttribute> ByRef rguidEditorType As Guid,
    pszPhysicalView As String,
    <InAttribute> ByRef rguidLogicalView As Guid,
    pResult As VSADDRESULT()
) As Integer

Parâmetros

  • itemidLoc
    [in] Identificador de item do item a ser adicionado.Valores são obtidas a partir do VSITEMIDDWORD.
  • pszItemName
    [in] Nome do item a ser adicionado.
  • cFilesToOpen
    [in] Número de arquivos a serem abertos.
  • rgpszFilesToOpen
    [in, size_is(cFilesToOpen)] O número real de arquivos é passado com cFilesToOpen.
  • hwndDlgOwner
    [in] Identificador para a caixa de diálogo.
  • rguidEditorType
    [in] Identificador exclusivo do tipo de editor.
  • pszPhysicalView
    [in] Nome do modo físico.
  • rguidLogicalView
    [in] Nome da visão lógica.
  • pResult
    [out, retval] Resultados cujos valores são obtidos a partir do VSADDRESULT enumeração.

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 vsshell.idl:

HRESULT IVsProject3::AddItemWithSpecific(
   [in] VSITEMID itemidLoc,
   [in] VSADDITEMOPERATION dwAddItemOperation,
   [in] LPCOLESTR pszItemName,
   [in] ULONG cFilesToOpen,
   [in, size_is(cFilesToOpen)] LPCOLESTR rgpszFilesToOpen[],
   [in] HWND hwndDlgOwner,
   [in] VSSPECIFICEDITORFLAGS grfEditorFlags,
   [in] REFGUID rguidEditorType,
   [in] LPCOLESTR pszPhysicalView,
   [in] REFGUID rguidLogicalView,
   [out, retval] VSADDRESULT *pResult
);

Esse método é usado para adicionar itens ao projeto e, além disso, para solicitar o projeto para abrir o item usando as informações do editor especificado.Ele é uma extensão do AddItem.

Implementados em conjunto com OpenSpecificEditor.

Consulte também

Interface IVsProject3
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo