Método IVsProject3.OpenItemWithSpecific (UInt32, UInt32, Guid, String, Guid, IntPtr, IVsWindowFrame)

 

Publicado: abril de 2016

Abre 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 OpenItemWithSpecific(
    uint itemid,
    uint grfEditorFlags,
    [InAttribute] ref Guid rguidEditorType,
    string pszPhysicalView,
    [InAttribute] ref Guid rguidLogicalView,
    IntPtr punkDocDataExisting,
    out IVsWindowFrame ppWindowFrame
)
int OpenItemWithSpecific(
    unsigned int itemid,
    unsigned int grfEditorFlags,
    [InAttribute] Guid% rguidEditorType,
    String^ pszPhysicalView,
    [InAttribute] Guid% rguidLogicalView,
    IntPtr punkDocDataExisting,
    [OutAttribute] IVsWindowFrame^% ppWindowFrame
)
abstract OpenItemWithSpecific : 
        itemid:uint32 *
        grfEditorFlags:uint32 *
        rguidEditorType:Guid byref *
        pszPhysicalView:string *
        rguidLogicalView:Guid byref *
        punkDocDataExisting:nativeint *
        ppWindowFrame:IVsWindowFrame byref -> int
Function OpenItemWithSpecific (
    itemid As UInteger,
    grfEditorFlags As UInteger,
    <InAttribute> ByRef rguidEditorType As Guid,
    pszPhysicalView As String,
    <InAttribute> ByRef rguidLogicalView As Guid,
    punkDocDataExisting As IntPtr,
    <OutAttribute> ByRef ppWindowFrame As IVsWindowFrame
) As Integer

Parâmetros

  • itemid
    [in] Identificador de item do item para abrir.Valores são obtidas a partir do VSITEMIDDWORD.
  • rguidEditorType
    [in] Identificador exclusivo do tipo de editor.
  • pszPhysicalView
    [in] Nome do modo de exibição físico.
  • rguidLogicalView
    [in] Nome da visão lógica.
  • punkDocDataExisting
    [in] Ponteiro para o IUnknown interface no documento a ser aberto.

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::OpenItemWithSpecific(
   [in] VSITEMID itemid,
   [in] VSSPECIFICEDITORFLAGS grfEditorFlags,
   [in] REFGUID rguidEditorType,
   [in] LPCOLESTR pszPhysicalView,
   [in] REFGUID rguidLogicalView,
   [in] IUnknown *punkDocDataExisting,
   [out] IVsWindowFrame **ppWindowFrame
);

Este método é usado para pedir o projeto para abrir o item (documento) usando as informações do editor especificado.Ele é uma extensão do OpenItem.

Ele é implementado em conjunto com OpenSpecificEditor.

Consulte também

Interface IVsProject3
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo