Compartilhar via


Método IVsSimpleObjectList2.CanRename (UInt32, String, Int32)

 

Retorna um sinalizador que indica se o item da lista fornecida pode ser renomeado.

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

Sintaxe

int CanRename(
    uint index,
    string pszNewName,
    out int pfOK
)
int CanRename(
    unsigned int index,
    String^ pszNewName,
    [OutAttribute] int% pfOK
)
abstract CanRename : 
        index:uint32 *
        pszNewName:string *
        pfOK:int byref -> int
Function CanRename (
    index As UInteger,
    pszNewName As String,
    <OutAttribute> ByRef pfOK As Integer
) As Integer

Parâmetros

  • index
    [in] Especifica o índice do item da lista de interesse.
  • pszNewName
    [in] Ponteiro para uma seqüência terminada por caractere nulo que contém o novo nome.
  • pfOK
    [out] Ponteiro para um sinalizador que indica se um item pode ser renomeado.

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 vsshell80.idl:

HRESULT IVsSimpleObjectList2::CanRename(
   [in] ULONG     Index, 
   [in] LPCOLESTR pszNewName, 
   [out] BOOL*    pfOK
);

Retornar pfOK para indicar se o índice do item pode ser renomeado.Se passado em pszNewName é null, você simplesmente responder a questão geral de estarem ou não oferece suporte a esse item rename (retornar true ou false).Se pszNewName não for nulo, fazer a validação do novo nome e retornar true se renomear bem-sucedida com esse novo nome é possível ou um erro do RH (juntamente com false) se o nome de alguma forma é inválido e definir as informações de erro rico para indicar ao usuário o que estava errado.

Consulte também

Interface IVsSimpleObjectList2
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo