<!--
{
  "availability" : [
    "iOS: 13.0.0 -",
    "iPadOS: 13.0.0 -",
    "macCatalyst: 13.1.0 -",
    "tvOS: 13.0.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "UIKit",
  "identifier" : "/documentation/UIKit/UICollectionLayoutSectionOrthogonalScrollingBehavior",
  "metadataVersion" : "0.1.0",
  "role" : "Enumeration",
  "symbol" : {
    "kind" : "Enumeration",
    "modules" : [
      "UIKit"
    ],
    "preciseIdentifier" : "c:@E@UICollectionLayoutSectionOrthogonalScrollingBehavior"
  },
  "title" : "UICollectionLayoutSectionOrthogonalScrollingBehavior"
}
-->

# UICollectionLayoutSectionOrthogonalScrollingBehavior

The scrolling behavior of the layout’s sections in relation to the main layout axis.

```
enum UICollectionLayoutSectionOrthogonalScrollingBehavior
```

## Overview

By default, each section lays out its content along the main axis of its layout, defined by the layout configuration’s [`scrollDirection`](/documentation/UIKit/UICollectionViewCompositionalLayoutConfiguration/scrollDirection) property. You can change this behavior for a particular section by setting its [`orthogonalScrollingBehavior`](/documentation/UIKit/NSCollectionLayoutSection/orthogonalScrollingBehavior) property to a different value than its default [`UICollectionLayoutSectionOrthogonalScrollingBehavior.none`](/documentation/UIKit/UICollectionLayoutSectionOrthogonalScrollingBehavior/none). Setting any other value for this property makes the section lay out its content orthogonally to the main layout axis.

![Diagram of a collection view layout with multiple sections. The collection view sections are laid out vertically, so the collection view scrolls on the vertical axis to reveal more content. The content in the top section of the collection view scrolls on the horizontal axis, orthogonally to the main layout axis of the collection view’s layout.](images/com.apple.uikit/media-3570451@2x.png)

## Topics

### Constants

[`UICollectionLayoutSectionOrthogonalScrollingBehavior.none`](/documentation/UIKit/UICollectionLayoutSectionOrthogonalScrollingBehavior/none)

The section does not allow users to scroll its content orthogonally.

[`UICollectionLayoutSectionOrthogonalScrollingBehavior.continuous`](/documentation/UIKit/UICollectionLayoutSectionOrthogonalScrollingBehavior/continuous)

The section allows users to scroll its content orthogonally with continuous scrolling.

[`UICollectionLayoutSectionOrthogonalScrollingBehavior.continuousGroupLeadingBoundary`](/documentation/UIKit/UICollectionLayoutSectionOrthogonalScrollingBehavior/continuousGroupLeadingBoundary)

The section allows users to scroll its content orthogonally, coming to a natural stop at the leading boundary of the visible group.

[`UICollectionLayoutSectionOrthogonalScrollingBehavior.paging`](/documentation/UIKit/UICollectionLayoutSectionOrthogonalScrollingBehavior/paging)

The section allows users to page its content orthogonally.

[`UICollectionLayoutSectionOrthogonalScrollingBehavior.groupPaging`](/documentation/UIKit/UICollectionLayoutSectionOrthogonalScrollingBehavior/groupPaging)

The section allows users to page its content orthogonally one group at a time.

[`UICollectionLayoutSectionOrthogonalScrollingBehavior.groupPagingCentered`](/documentation/UIKit/UICollectionLayoutSectionOrthogonalScrollingBehavior/groupPagingCentered)

The section allows users to page its content orthogonally one group at a time, centering each group.



---

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)