namespace AlicizaX.UI
{
///
/// Defines how an item should be aligned when scrolling to it
///
public enum ScrollAlignment
{
///
/// Align item to the top/left of the viewport
///
Start,
///
/// Align item to the center of the viewport
///
Center,
///
/// Align item to the bottom/right of the viewport
///
End
}
}