The Tools
property of the EditorTool
class provides access to a collection of editor tools that are available for use within the editor environment. This property returns an IEnumerable<EditorTool>
, allowing iteration over the set of tools.
The Tools
property of the EditorTool
class provides access to a collection of editor tools that are available for use within the editor environment. This property returns an IEnumerable<EditorTool>
, allowing iteration over the set of tools.
Use the Tools
property to retrieve all the editor tools that are currently available. This can be useful for dynamically accessing and utilizing different tools within the editor environment.
// Example of iterating over the available tools in the editor EditorTool editorTool = new EditorTool(); foreach (var tool in editorTool.Tools) { // Perform operations with each tool Console.WriteLine(tool.GetType().Name); }