IaqCOMAccessDbgModule Object

Applies to AQTime 8.81, last modified on January 18, 2022

Description

IaqCOMAccessDbgModule objects provide access to debug symbols that correspond to a binary module. You use these objects to automate profiling areas via COM.

Properties of an IaqCOMAccessDbgModule object provide information about the module to which the object corresponds and help you enumerate units, source files, classes and routines defined in the module’s source code.

Inheritance Hierarchy

The object implements the following interfaces:

IaqCOMAccessDbgModule

Members

IaqCOMAccessDbgModule

The IaqCOMAccessDbgModule interface does not contain any methods or properties. It inherits methods and properties of other interfaces.

IaqCOMAccessDbgContainer
Members(in alphabetical order) Description
ItemCount(DbgType) Property. Read-only. Integer. Returns the number of units, namespaces, classes, routines, and other debug symbols included in the module. The DbgType parameter specifies the type of desired debug symbols. To set this parameter, you can use either values of the TDebugType enumeration type or the appropriate integer value.
Item(DbgType, Index) Property. Read-only. Provides programming interface to a debug symbol by its type and index:
  • DbgType - Specifies the type of the desired symbol. To set this parameter, you can use either a value of the TDebugType enumeration type or the appropriate integer value.

  • Index - Specifies the index of the desired symbol in the debug info container that corresponds to the module. The index is zero-based. To obtain the total number of debug symbols of the desired type in the module, use the ItemCount property.

IaqCOMAccessDbgSymbol
Members(in alphabetical order) Description
FullName Property. Read-only. String. Specifies the fully-qualified name of the module’s file.
Name Property. Read-only. String. For debug symbols that correspond to modules, this property returns the same value as the FullName property.
Type Property. Read-only. Specifies the type of the debug symbol. For debug symbols that correspond to modules this property returns 1 (or dtModule).

Example

For an example of using the IaqCOMAccessDbgModule objects, see Managing Profiling Areas via COM.

See Also

COM Type Reference
Managing Profiling Areas via COM
Working With AQTime via COM - Overview

Highlight search results