IVsLiteTree.DeleteItems(IVsLiteTreeList, UInt32, UInt32) Método

Definição

Usado para excluir itens específicos sem realinhar a árvore chamando ReAlign(IVsLiteTreeList) .

public:
 int DeleteItems(Microsoft::VisualStudio::Shell::Interop::IVsLiteTreeList ^ pNode, System::UInt32 iStart, System::UInt32 Count);
public:
 int DeleteItems(Microsoft::VisualStudio::Shell::Interop::IVsLiteTreeList ^ pNode, unsigned int iStart, unsigned int Count);
int DeleteItems(Microsoft::VisualStudio::Shell::Interop::IVsLiteTreeList const & pNode, unsigned int iStart, unsigned int Count);
public int DeleteItems (Microsoft.VisualStudio.Shell.Interop.IVsLiteTreeList pNode, uint iStart, uint Count);
abstract member DeleteItems : Microsoft.VisualStudio.Shell.Interop.IVsLiteTreeList * uint32 * uint32 -> int
Public Function DeleteItems (pNode As IVsLiteTreeList, iStart As UInteger, Count As UInteger) As Integer

Parâmetros

pNode
IVsLiteTreeList

no Ponteiro para o IVsLiteTreeList para o qual excluir itens.

iStart
UInt32

no Índice do item em que começa a exclusão.

Count
UInt32

no Número de itens a serem excluídos.

Retornos

Int32

Se o método for bem-sucedido, retornará S_OK. Se falhar, retornará um código de erro.

Comentários

[C++]

De VSShell. idl:

HRESULT IVsLiteTree::DeleteItems(  
   [in] IVsLiteTreeList *pNode,  
   [in] ULONG iStart,  
   [in] ULONG Count  
);  

Aplica-se a