Partilhar via


Método IVsProjectSpecificEditorMap.GetSpecificEditorType (String, Guid)

 

Use para especificar qual editor deve ser usado para carregar o arquivo especificado.

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

Sintaxe

int GetSpecificEditorType(
    string pszMkDocument,
    out Guid pguidEditorType
)
int GetSpecificEditorType(
    String^ pszMkDocument,
    [OutAttribute] Guid% pguidEditorType
)
abstract GetSpecificEditorType : 
        pszMkDocument:string *
        pguidEditorType:Guid byref -> int
Function GetSpecificEditorType (
    pszMkDocument As String,
    <OutAttribute> ByRef pguidEditorType As Guid
) As Integer

Parâmetros

  • pszMkDocument
    [in] Formulário do identificador exclusivo do identificador de origem do documento em seqüência no sistema de projeto.
  • pguidEditorType
    [out, retval] GUID da fábrica de editor que deve ser usada para instanciar um editor para o arquivo.

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 IVsProjectSpecificEditorMap::GetSpecificEditorType(
   [in] LPCOLESTR pszMkDocument,
   [out, retval] GUID *pguidEditorType
);

Consulte também

Interface IVsProjectSpecificEditorMap
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo