---
title: "subscript(dynamicMember:)"
framework: foundation
role: symbol
role_heading: Instance Subscript
path: "foundation/progressmanager/subscript(dynamicmember:)-7h16n"
---

# subscript(dynamicMember:)

Gets or sets custom unsigned integer properties.

## Declaration

```swift
final subscript<P>(dynamicMember key: KeyPath<ProgressManager.Properties, P.Type>) -> UInt64 where P : ProgressManager.Property, P.Summary == UInt64, P.Value == UInt64 { get set }
```

## Parameters

- `key`: A key path to the custom unsigned integer property type.

## Overview

Overview This subscript provides read-write access to custom progress properties where both the value and summary types are UInt64. If the property has not been set, the getter returns the property’s default value.
