namespace Terminal.Gui;
/// Defines rendering options that affect how the view is displayed.
public class ListColumnStyle
{
///
/// Gets or sets an Orientation enum indicating whether to populate data down each column rather than across each
/// row. Defaults to .
///
public Orientation Orientation { get; set; } = Orientation.Horizontal;
///
/// Gets or sets a flag indicating whether to scroll in the same direction as
/// . Defaults to .
///
public bool ScrollParallel { get; set; } = false;
}