AcxElementGetId function (acxelements.h)

The AcxElementGetId function retrieves the number that represents the element ID for a given ACX element object.

Syntax

ULONG AcxElementGetId(
  ACXELEMENT Element
);

Parameters

Element

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

Return value

Returns the ULONG value that represents the element ID for the specified ACXELEMENT object. Will return AcxElementIdNone if the object has no element ID.

Remarks

Example

Example usage is shown below.

 ULONG id = AcxElementGetId((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