Skip to content

Latest commit

 

History

History
59 lines (30 loc) · 1.63 KB

PyIEnumContextProps.md

File metadata and controls

59 lines (30 loc) · 1.63 KB

PyIEnumContextProps

PyIEnumContextProps Object

A Python interface to IEnumContextProps

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. 

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

((PyIID, int, PyIUnknown), ...) = Next(num) Retrieves a specified number of items in the enumeration sequence.

Parameters

  • num=1 : int

    Number of items to retrieve.

Return Value

Returns a tuple of 3-tuples representing ContextProperty structs:

First item is GUID identifying the property, second is Flags (reserved), third is the interface set as the property value

Reset() Resets the enumeration sequence to the beginning.

Skip() Skips over the next specified elementes.