This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RDTKEditor/RhythmBaseCore/Events/ContentModes.cs
T

34 lines
744 B
C#

namespace RhythmBase.Events
{
/// <summary>
/// Specifies the different modes for content display.
/// </summary>
public enum ContentModes
{
/// <summary>
/// Scales the content to fill the available space.
/// </summary>
ScaleToFill,
/// <summary>
/// Scales the content to fit within the available space while maintaining the aspect ratio.
/// </summary>
AspectFit,
/// <summary>
/// Scales the content to fill the available space while maintaining the aspect ratio.
/// </summary>
AspectFill,
/// <summary>
/// Centers the content within the available space without scaling.
/// </summary>
Center,
/// <summary>
/// Tiles the content to fill the available space.
/// </summary>
Tiled
}
}