Description
The Title
property represents the human-readable title of a project configuration in the Sandbox environment. It is a string value that provides a descriptive name for the project, such as "Sandbox" or "Counter-Strike". This property is essential for identifying the project in a user-friendly manner.
Usage
To set or retrieve the title of a project configuration, use the Title
property. Ensure that the title is between 2 and 32 characters in length, as enforced by the MinLength
and MaxLength
attributes. This property is typically used in the context of configuring or displaying project information.
Example
// Example of setting the Title property
var projectConfig = new ProjectConfig();
projectConfig.Title = "My Awesome Game";
// Example of getting the Title property
string projectTitle = projectConfig.Title;
// projectTitle now contains "My Awesome Game"