IEnumProfile

提供用于枚举 IProfile 接口集合的标准 COM 枚举方法。

语法

{
  [id(1), helpstring("Next")] HRESULT Next
    ([in] ULONG celt,
    [out, size_is(celt), length_is(*pCeltFetched)] IProfile** prgVar,
    [out] ULONG* pCeltFetched);
  [id(2), helpstring("Skip")] HRESULT Skip
    ([in] ULONG celt);
  [id(3), helpstring("Reset")] HRESULT Reset();
  [id(4), helpstring("Clone")] HRESULT Clone
    ([out] IEnumProfile** ppEnum);
};

函数

下表描述了该接口提供的功能。

方法 说明

下一页

返回一个数组,其中包含指定数量的元素。

Skip

指示要跳过的元素数。

重置

重置枚举。

克隆

创建克隆枚举器。

接口