OverwriteSerializedFields(MultiColumnHeaderState, MultiColumnHeaderState)
Overwrites the seralized fields from the source state to the destination state.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Method
- Namespace: UnityEditor.IMGUI.Controls
- Assembly: UnityEditor.CoreModule
public static void OverwriteSerializedFields(MultiColumnHeaderState source, MultiColumnHeaderState destination)
Parameters
State that have serialized data to be transfered to the destination state.
Destination state.
Remarks
Some of the fields in the MultiColumnHeader state are serializable so they can be preserved between assembly reloads and/or when restarting Unity. The non-serialized fields have to be reconstructed. After having reconstructed the state use this method to apply any serialized fields from a previous session. Ensure to check if the data can be overwritten using MultiColumnHeaderState.CanOverwriteSerializedFields
Additional Resources: MultiColumnHeaderState.CanOverwriteSerializedFields.