<!--
{
  "availability" : [
    "macOS: -"
  ],
  "documentType" : "symbol",
  "framework" : "AppKit",
  "identifier" : "/documentation/AppKit/NSButton/BezelStyle-swift.enum/pushDisclosure",
  "metadataVersion" : "0.1.0",
  "role" : "Case",
  "symbol" : {
    "kind" : "Case",
    "modules" : [
      "AppKit"
    ],
    "preciseIdentifier" : "c:@E@NSBezelStyle@NSBezelStylePushDisclosure"
  },
  "title" : "NSButton.BezelStyle.pushDisclosure"
}
-->

# NSButton.BezelStyle.pushDisclosure

A bezel style push button with a disclosure triangle.

```
case pushDisclosure
```

## Discussion

Use this style of button when you want your button to look like a disclosure button, commonly seen in toolbars on macOS.

```swift
let button = NSButton()
button.title = ""
button.bezelStyle = .pushDisclosure
```

For design guidance, see [Human Interface Guidelines > Buttons](https://developer.apple.com/design/human-interface-guidelines/buttons).

---

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)