Description
The Current
property of the Editor.CodeEditor
class provides access to the current code editor being used within the s&box environment. This property is static and publicly accessible, allowing developers to interact with the code editor that is currently active.
Usage
To access the current code editor, you can use the Current
property directly from the Editor.CodeEditor
class. This is useful when you need to perform operations or retrieve information from the active code editor.
Example
// Access the current code editor
Editor.ICodeEditor currentEditor = Editor.CodeEditor.Current;
// Use the currentEditor to perform operations, such as opening files or solutions
currentEditor.OpenFile("path/to/file.cs");