IVsLiteTree.InsertItems 方法
不执行重新排列) 的插入项。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
Function InsertItems ( _
pNode As IVsLiteTreeList, _
iAfter As UInteger, _
Count As UInteger _
) As Integer
int InsertItems(
IVsLiteTreeList pNode,
uint iAfter,
uint Count
)
参数
- pNode
类型:Microsoft.VisualStudio.Shell.Interop.IVsLiteTreeList
[out] 一个指向修改的 IVsLiteTreeList 的指针。使用 -1 放在列表的开头指示开始。
- iAfter
类型:System.UInt32
[in] 整数索引,在后插入新的节点。
- Count
类型:System.UInt32
[in] 非独占计数节点的整数插入。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
谨慎使用这些调整现有节点 don't 添加一个 0 个子节点然后插入多个项目。
COM 签名
[C++]
从 vsshell.idl:
HRESULT IVsLiteTree::InsertItems(
[in] IVsLiteTreeList *pNode,
[in] ULONG iAfter,
[in] ULONG Count
);
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。