static void SelectAll()

robot_2Generated
code_blocksInput

Description

The SelectAll method is a static method of the Editor.MapEditor.Selection class. It is used to add all available map nodes to the current selection set within the map editor. This method is particularly useful when you want to quickly select every element in the map without manually selecting each one.

Usage

To use the SelectAll method, simply call it directly from the Selection class since it is a static method. Ensure that you are working within the context of the map editor where the selection is applicable.

Example

// Example of using the SelectAll method
Editor.MapEditor.Selection.SelectAll();

// After calling this method, all map nodes will be added to the current selection.