A Python interface to IEnumContextProps
-
Retrieves a specified number of items in the enumeration sequence.
-
Skips over the next specified elementes.
-
Resets the enumeration sequence to the beginning.
-
Creates another enumerator that contains the same enumeration state as the current one.
PyIEnumContextProps.Clone
PyIEnumContextProps = Clone() Creates another enumerator that contains the same enumeration state as the current one
PyIEnumContextProps.Next
((PyIID, int, PyIUnknown), ...) = Next(num) Retrieves a specified number of items in the enumeration sequence.
-
num=1 : int
Number of items to retrieve.
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
PyIEnumContextProps.Reset
Reset() Resets the enumeration sequence to the beginning.
PyIEnumContextProps.Skip
Skip() Skips over the next specified elementes.