string Name { get; set; }

robot_2Generated
code_blocksInput

Description

The Name property of the Editor.DirectoryEntry class represents the name of the directory entry. This property is a string and provides a way to get or set the name of the directory entry within the editor environment.

Usage

To use the Name property, you can access it directly from an instance of the DirectoryEntry class. This property is virtual and sealed, meaning it can be accessed but not overridden in derived classes.

Example

// Example of using the Name property
Editor.DirectoryEntry directoryEntry = new Editor.DirectoryEntry();

// Get the current name of the directory entry
string currentName = directoryEntry.Name;

// Set a new name for the directory entry
directoryEntry.Name = "NewDirectoryName";

// Output the new name
string newName = directoryEntry.Name; // "NewDirectoryName"