AcxElementGetContainer function (acxelements.h)

The AcxElementGetContainer function retrieves the associated container for the given ACX element. For more information about ACX objects, see Summary of ACX Objects.

Syntax

ACXOBJECT AcxElementGetContainer(
  ACXELEMENT Element
);

Parameters

Element

An existing, initialized, ACXELEMENT object. For more information about ACX objects, see Summary of ACX Objects.

Return value

Returns the ACXOBJECT object that is the container for the specified ACX element.

Remarks

Example

Example usage is shown below.

    ACXCIRCUIT circuit = (ACXCIRCUIT)AcxElementGetContainer((ACXELEMENT)Mute);

ACX requirements

Minimum ACX version: 1.0

For more information about ACX versions, see ACX version overview.

Requirements

Requirement Value
Header acxelements.h
IRQL <= DISPATCH_LEVEL

See also