Skip to content

Latest commit

 

History

History
54 lines (27 loc) · 1.79 KB

PyIEnumRemoteDebugApplicationThreads.md

File metadata and controls

54 lines (27 loc) · 1.79 KB

PyIEnumRemoteDebugApplicationThreads

PyIEnumRemoteDebugApplicationThreads Object

A Python interface to IEnumRemoteDebugApplicationThreads

Methods

  • Next

    Retrieves a specified number of items in the enumeration sequence. 

  • Skip

    Skips over the next specified elementes. 

  • Reset

    Resets the enumeration sequence to the beginning. 

  • Clone

    Creates another enumerator that contains the same enumeration state as the current one. 

PyIEnumRemoteDebugApplicationThreads = Clone() Creates another enumerator that contains the same enumeration state as the current one

object = Next(num) Retrieves a specified number of items in the enumeration sequence.

Parameters

  • num=1 : int

    Number of items to retrieve.

Reset() Resets the enumeration sequence to the beginning.

Skip() Skips over the next specified elementes.