IEnumerable<EditorTool> Tools { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

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.

Usage

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

// 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);
}