void NoteFinishEdit( SerializedProperty childProperty )

robot_2Generated
code_blocksInput

Description

The NoteFinishEdit method is a virtual method of the SerializedObject class in the Sandbox namespace. It is used to signal the completion of an edit operation on a serialized property. This method should be called after changes to a property have been finalized, allowing any necessary post-edit processing to occur.

Usage

To use the NoteFinishEdit method, you need to have an instance of a class that inherits from SerializedObject. You can then call this method, passing in the SerializedProperty that has been edited.

This method is typically used in conjunction with NoteStartEdit and NoteChanged to manage the lifecycle of property edits.

Example

// Assuming 'serializedObject' is an instance of a class derived from SerializedObject
// and 'property' is a SerializedProperty that has been edited.

serializedObject.NoteFinishEdit(property);