Skip to content

Latest commit

 

History

History
68 lines (33 loc) · 1.63 KB

PyICatInformation.md

File metadata and controls

68 lines (33 loc) · 1.63 KB

PyICatInformation

PyICatInformation Object

A Python interface to ICatInformation

Methods

  • EnumCategories

    Returns an enumerator for the component categories registered on the system. 

  • GetCategoryDesc

    Retrieves the localized description string for a specific category ID. 

  • EnumClassesOfCategories

    Returns an enumerator over the classes that implement one or more interfaces. 

PyICatInformation.EnumCategories

PyIEnumCATEGORYINFO = EnumCategories(lcid) Returns an enumerator for the component categories registered on the system.

Parameters

  • lcid=0 : int

    lcid

PyICatInformation.EnumClassesOfCategories

PyIEnumGUID = EnumClassesOfCategories(listIIdImplemented, listIIdRequired

) Returns an enumerator over the classes that implement one or more interfaces.

Parameters

  • listIIdImplemented=None : [PyIID, ...]

    A sequence of PyIID objects, or None.

  • listIIdRequired=None : list iid

    A sequence of PyIID objects, or None.

PyICatInformation.GetCategoryDesc

string = GetCategoryDesc(lcid) Retrieves the localized description string for a specific category ID.

Parameters

  • lcid=0 : int

    lcid

Comments

The return type is a unicode object.