24 lines
521 B
C#
24 lines
521 B
C#
namespace AlicizaX.UI
|
|
{
|
|
/// <summary>
|
|
/// Defines how an item should be aligned when scrolling to it
|
|
/// </summary>
|
|
public enum ScrollAlignment
|
|
{
|
|
/// <summary>
|
|
/// Align item to the top/left of the viewport
|
|
/// </summary>
|
|
Start,
|
|
|
|
/// <summary>
|
|
/// Align item to the center of the viewport
|
|
/// </summary>
|
|
Center,
|
|
|
|
/// <summary>
|
|
/// Align item to the bottom/right of the viewport
|
|
/// </summary>
|
|
End
|
|
}
|
|
}
|