Skip to content

Latest commit

 

History

History
74 lines (36 loc) · 2.19 KB

PyIRunningObjectTable.md

File metadata and controls

74 lines (36 loc) · 2.19 KB

PyIRunningObjectTable

PyIRunningObjectTable Object

A Python interface to IRunningObjectTable

Methods

  • Register

    Registers an object in the ROT 

  • Revoke

    Revokes a previously registered object 

  • IsRunning

    Checks whether an object is running. 

  • GetObject

    Checks whether an object is running. 

  • EnumRunning

    Creates an enumerator that can list the monikers of all the objects currently registered in the Running Object Table (ROT). 

PyIEnumMoniker = EnumRunning() Creates an enumerator that can list the monikers of all the objects currently registered in the Running Object Table (ROT).

PyIUnknown = GetObject(objectName) Checks whether an object is running.

Parameters

  • objectName : PyIMoniker

    The PyIMoniker interface on the moniker to search for in the Running Object Table.

int = IsRunning(objectName) Checks whether an object is running.

Parameters

  • objectName : PyIMoniker

    The PyIMoniker interface on the moniker to search for in the Running Object Table.

int = Register() Registers an object and its identifying moniker in the Running Object Table (ROT).

int = Revoke() Removes from the Running Object Table

(ROT) an entry that was previously registered by a call to PyIRunningObjectTable::Register.