Método IVsSolution.CreateNewProjectViaDlg (String, String, UInt32)
Publicado: abril de 2016
Controla as opções para o Criar um novo projeto caixa de diálogo.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int CreateNewProjectViaDlg(
string pszExpand,
string pszSelect,
uint dwReserved
)
int CreateNewProjectViaDlg(
String^ pszExpand,
String^ pszSelect,
unsigned int dwReserved
)
abstract CreateNewProjectViaDlg :
pszExpand:string *
pszSelect:string *
dwReserved:uint32 -> int
Function CreateNewProjectViaDlg (
pszExpand As String,
pszSelect As String,
dwReserved As UInteger
) As Integer
Parâmetros
- pszExpand
[in] Nó de modo de exibição de árvore é selecionado.
- pszSelect
[in] Item de modo de exibição de lista que está selecionado.
- dwReserved
[in] Reservado para uso futuro.
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 IVsSolution::CreateNewProjectViaDlg(
[in] LPCOLESTR pszExpand,
[in] LPCOLESTR pszSelect,
[in] DWORD dwReserved
);
Este método traz o Novo projeto caixa de diálogo com a exibição árvore especificada de nó e a lista Exibir item selecionada.Use esse método para criar um novo projeto.
Consulte também
Interface IVsSolution
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo