void PushRedo()

book_4_sparkGenerated
code_blocksInput

Description

The PushRedo method is a virtual method in the Editor.NodeEditor.GraphView class. It is used to push the current state of the graph view onto the redo stack. This allows the user to redo actions that have been undone, effectively reversing the effect of an undo operation.

Usage

To use the PushRedo method, simply call it on an instance of the GraphView class. This method does not take any parameters and does not return a value. It is typically used in conjunction with undo operations to manage the state of the graph view.

Example

// Assuming 'graphView' is an instance of Editor.NodeEditor.GraphView

graphView.PushRedo();

// This will push the current state onto the redo stack, allowing for redo operations.