---
title: shouldRunSavePanelWithAccessoryView
framework: appkit
role: symbol
role_heading: Instance Property
path: appkit/nsdocument/shouldrunsavepanelwithaccessoryview
---

# shouldRunSavePanelWithAccessoryView

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

## Declaration

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

## Discussion

Discussion When the value of this property is 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 true. Subclasses can override this property to provide a different value. For example, you might provide the following implementation: - (BOOL)shouldRunSavePanelWithAccessoryView {     return [self fileURL] == nil; }

## See Also

### Presenting a Save Panel

- [runModalSavePanel(for:delegate:didSave:contextInfo:)](appkit/nsdocument/runmodalsavepanel(for:delegate:didsave:contextinfo:).md)
- [prepareSavePanel(_:)](appkit/nsdocument/preparesavepanel(_:).md)
- [fileTypeFromLastRunSavePanel](appkit/nsdocument/filetypefromlastrunsavepanel.md)
- [fileNameExtensionWasHiddenInLastRunSavePanel](appkit/nsdocument/filenameextensionwashiddeninlastrunsavepanel.md)
