Skip to content

Latest commit

 

History

History
115 lines (57 loc) · 2.54 KB

PyITypeLib.md

File metadata and controls

115 lines (57 loc) · 2.54 KB

PyITypeLib

PyITypeLib Object

An object that implements the ITypeLib interface.

Methods

object for Name to VARDESC/FUNCDESC mapping. 

sentinel 

PyITypeLib.GetDocumentation

tuple = GetDocumentation(index) Retrieves documentation information about the library.

Parameters

  • index : int

    The index of the type description within the library

Return Value

The return type is a tuple of (name of item, documentation string, help context integer, help file name)

PyITypeLib.GetLibAttr

TLIBATTR = GetLibAttr() Retrieves the libraries attributes

PyITypeLib.GetTypeComp

PyITypeComp = GetTypeComp() Retrieves a ITypeComp

object for Name to VARDESC/FUNCDESC mapping.

PyITypeLib.GetTypeInfo

PyITypeInfo = GetTypeInfo(index) Retrieves the specified type description in the library.

Parameters

  • index : int

    The index of the type description within the library

PyITypeLib.GetTypeInfoCount

int = GetTypeInfoCount() Retrieves the number of PyITypeInfos in the type library.

PyITypeLib.GetTypeInfoOfGuid

PyITypeInfo = GetTypeInfoOfGuid(iid) Retrieves the type info of the specified GUID.

Parameters

  • iid : PyIID

    GUID of the type description.

PyITypeLib.GetTypeInfoType

TYPEKIND

= GetTypeInfoType(index) Retrieves the type of a type description.

Parameters

  • index : int

    The index of the type description within the library