Método IVsStructuredFileIO.GetFormatList (String, String, String)
Retorna a lista de formato para os tipos de arquivo suportado pelo seu VSPackage.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int GetFormatList(
string szEntityName,
string szFileTypes,
out string ppszFormatList
)
int GetFormatList(
String^ szEntityName,
String^ szFileTypes,
[OutAttribute] String^% ppszFormatList
)
abstract GetFormatList :
szEntityName:string *
szFileTypes:string *
ppszFormatList:string byref -> int
Function GetFormatList (
szEntityName As String,
szFileTypes As String,
<OutAttribute> ByRef ppszFormatList As String
) As Integer
Parâmetros
- szEntityName
[in] Terminada por caractere nulo string contendo o nome de entidade, por exemplo, "Arquivo de projeto de unidade de distribuição" ou "Arquivo de projeto do VB.".
- szFileTypes
[in] Seqüência terminada por caractere nulo que contém os tipos de arquivo.Esta é uma lista separada por ponto-e-vírgula de extensões de arquivo.
- ppszFormatList
[out] Especifica o local em que a lista de formato de arquivo será armazenada.
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 IVsStructuredFileIO::GetFormatList(
[in] LPCOLESTR szEntityName,
[in] LPCOLESTR szFileTypes,
[out] LPOLESTR *ppszFormatList
);
Consulte também
Interface IVsStructuredFileIO
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo