OnRestoreValues()

View as Markdown

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

1public override void OnRestoreValues()
2{
3 // Do something with the restored values. Can also trigger a repaint via OnPropertyChanged()
4}