Método IVsParseCommandLine.GetACParam (Int32, Int32, Int32, String)
Publicado: abril de 2016
Recupera um item de linha de comando de conclusão automática.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int GetACParam(
out int piACIndex,
out int piACStart,
out int pcchACLength,
out string pbstrACParam
)
int GetACParam(
[OutAttribute] int% piACIndex,
[OutAttribute] int% piACStart,
[OutAttribute] int% pcchACLength,
[OutAttribute] String^% pbstrACParam
)
abstract GetACParam :
piACIndex:int byref *
piACStart:int byref *
pcchACLength:int byref *
pbstrACParam:string byref -> int
Function GetACParam (
<OutAttribute> ByRef piACIndex As Integer,
<OutAttribute> ByRef piACStart As Integer,
<OutAttribute> ByRef pcchACLength As Integer,
<OutAttribute> ByRef pbstrACParam As String
) As Integer
Parâmetros
- piACIndex
[out] Ponteiro para um índice que indica se há ou não é um item de conclusão automática.Defina como PCL_AUTO_COMMANDS, se houver itens de conclusão automática.
- piACStart
[out] Ponteiro para o início do item de conclusão automática no buffer de linha de comando.
- pcchACLength
[out] Ponteiro para o comprimento do item de conclusão automática.
- pbstrACParam
[out] Ponteiro para uma seqüência de caracteres que contém o parâmetro atual de conclusão automática.
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 IVsParseCommandLine::GetACParam(
[out] int* piACIndex,
[out] int* piACStart,
[out] int* pcchACLength,
[out, retval] BSTR* pbstrACParam
);
Consulte também
Interface IVsParseCommandLine
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo