# CloseListerData

If a [script add-in](https://chaoses-ib.gitbook.io/directory-opus/manual/scripting/script_add-ins)implements the [**OnCloseLister**](https://chaoses-ib.gitbook.io/directory-opus/manual/reference/scripting_reference/scripting_events/oncloselister) event, the method receives a **CloseListerData** object before a Lister is closed.

| Property Name | Return Type                                                                                                                       | Description                                                                                                                                                                                                                                                                                                          |
| ------------- | --------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| lister        | *object:*[**Lister**](https://chaoses-ib.gitbook.io/directory-opus/manual/reference/scripting_reference/scripting_objects/lister) | Returns a [**Lister**](https://chaoses-ib.gitbook.io/directory-opus/manual/reference/scripting_reference/scripting_objects/lister) object representing the Lister that is closing.                                                                                                                                   |
| prevent\_save | *bool*                                                                                                                            | Set this to **True** to prevent the closing Lister from being saved as the new default Lister.                                                                                                                                                                                                                       |
| qualifiers    | *string*                                                                                                                          | <p>Returns a string indicating any qualifier keys that were held down by the user when the event was triggered.<br>The string can contain any or all of the following: <em>shift</em> <em>ctrl</em>, <em>alt</em>, <em>lwin</em>, <em>rwin</em><br>If no qualifiers were down, the string will be: <em>none</em></p> |
| shutdown      | *bool*                                                                                                                            | Returns **True** if the Lister is closing because Opus is shutting down.                                                                                                                                                                                                                                             |
