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