<!--
{
  "availability" : [
    "iOS: -",
    "iPadOS: -",
    "macCatalyst: -",
    "macOS: -",
    "tvOS: -",
    "visionOS: -"
  ],
  "documentType" : "symbol",
  "framework" : "AudioToolbox",
  "identifier" : "/documentation/AudioToolbox/kAudioUnitProperty_ParameterValueStrings",
  "metadataVersion" : "0.1.0",
  "role" : "Global Variable",
  "symbol" : {
    "kind" : "Global Variable",
    "modules" : [
      "Audio Toolbox"
    ],
    "preciseIdentifier" : "c:@Ea@kAudioUnitProperty_ClassInfo@kAudioUnitProperty_ParameterValueStrings"
  },
  "title" : "kAudioUnitProperty_ParameterValueStrings"
}
-->

# kAudioUnitProperty_ParameterValueStrings

An array of names for a named, indexed audio unit parameter. An indexed parameter is one whose unit type is [`AudioUnitParameterUnit.indexed`](/documentation/AudioToolbox/AudioUnitParameterUnit/indexed). The array’s strings can be used to build a menu for the parameter.

```
var kAudioUnitProperty_ParameterValueStrings: AudioUnitPropertyID { get }
```

## Discussion

A read-only <doc://com.apple.documentation/documentation/CoreFoundation/CFArray> object whose elements are <doc://com.apple.documentation/documentation/CoreFoundation/CFString> objects, valid on any audio unit scope.

When obtaining a parameter string array from an audio unit with the [`AudioUnitGetProperty(_:_:_:_:_:_:)`](/documentation/AudioToolbox/AudioUnitGetProperty(_:_:_:_:_:_:)) function, you own the reference to the array and are responsible for later releasing it by calling the <doc://com.apple.documentation/documentation/CoreFoundation/CFRelease> function.

Indexed parameters use whole-number index values; the size of this property’s array should be the same as the range between the parameter’s minimum and maximum values.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)