bool StartFolded { get; set; }

robot_2Generated
code_blocksInput

Description

The StartFolded property of the GroupAttribute class determines whether the group should initially appear in a closed state. This is useful for organizing and managing the display of grouped elements, allowing for a cleaner and more organized interface by default.

Usage

To use the StartFolded property, apply the GroupAttribute to a class or member and set the StartFolded property to true if you want the group to start in a folded state. This can help in managing the visibility of grouped elements in a user interface.

Example

[Group("Settings", StartFolded = true)]
public class GameSettings
{
    // Properties and methods for game settings
}