---
title: "invalidateDecorationElements(ofKind:at:)"
framework: appkit
role: symbol
role_heading: Instance Method
path: "appkit/nscollectionviewlayoutinvalidationcontext/invalidatedecorationelements(ofkind:at:)"
---

# invalidateDecorationElements(ofKind:at:)

Marks the specified decoration views as invalid so that their layout information can be updated.

## Declaration

```swift
func invalidateDecorationElements(ofKind elementKind: NSCollectionView.DecorationElementKind, at indexPaths: Set<IndexPath>)
```

## Parameters

- `elementKind`: A string that identifies the type of the decoration views. This parameter must not be nil or an empty string.
- `indexPaths`: A set of doc://com.apple.documentation/documentation/Foundation/NSIndexPath objects. Each index path contains the section in which the decoration view appears.

## Discussion

Discussion Call this method when you want the layout object to recompute attributes for one or more decoration views. All of the views must be of the type specified by the elementKind parameter. The method adds the views you specify to the invalidatedDecorationIndexPaths property. You can call this method more than once for the specified elementKind value.

## See Also

### Invalidating Specific Items

- [invalidateItems(at:)](appkit/nscollectionviewlayoutinvalidationcontext/invalidateitems(at:).md)
- [invalidateSupplementaryElements(ofKind:at:)](appkit/nscollectionviewlayoutinvalidationcontext/invalidatesupplementaryelements(ofkind:at:).md)
- [invalidatedItemIndexPaths](appkit/nscollectionviewlayoutinvalidationcontext/invalidateditemindexpaths.md)
- [invalidatedSupplementaryIndexPaths](appkit/nscollectionviewlayoutinvalidationcontext/invalidatedsupplementaryindexpaths.md)
- [invalidatedDecorationIndexPaths](appkit/nscollectionviewlayoutinvalidationcontext/invalidateddecorationindexpaths.md)
