> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.ninjatrader.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.ninjatrader.com/_mcp/server.

# OnRestoreValues()

## Definition

Called when the column is restored (e.g. from a workspace). All public properties in a SuperDOM Column are saved to the workspace upon closing and selecting save. You may choose to do something explicit with a certain property when the **OnRestoreValues()** method is called.

## Method Return Value

This method does not return a value.

## Syntax

You may override the method in your SuperDOM column with the following syntax:

`public override void OnRestoreValues()`

## Parameters

This method does not require any parameters.

## Examples

```csharp
public override void OnRestoreValues()
{
   // Do something with the restored values. Can also trigger a repaint via OnPropertyChanged()
}
```