<!--
{
  "availability" : [
    "macOS: 10.0.0 - 27.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "AppKit",
  "identifier" : "/documentation/AppKit/NSDocument/shouldRunSavePanelWithAccessoryView",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Property",
  "symbol" : {
    "kind" : "Instance Property",
    "modules" : [
      "AppKit"
    ],
    "preciseIdentifier" : "c:objc(cs)NSDocument(py)shouldRunSavePanelWithAccessoryView"
  },
  "title" : "shouldRunSavePanelWithAccessoryView"
}
-->

# shouldRunSavePanelWithAccessoryView

A Boolean value that indicates whether the document’s Save panel displays a list of supported writable document types.

```
var shouldRunSavePanelWithAccessoryView: Bool { get }
```

## Discussion

When the value of this property is <doc://com.apple.documentation/documentation/Swift/true>, the document includes a pop-up menu of supported writable document types when it displays the Save panel. The default value of this property is <doc://com.apple.documentation/documentation/Swift/true>. Subclasses can override this property to provide a different value. For example, you might provide the following implementation:

```objc
- (BOOL)shouldRunSavePanelWithAccessoryView {
    return [self fileURL] == nil;
}
```

---

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)