namespace Terminal.Gui;
///
/// Indicates the LayoutStyle for the .
///
/// If Absolute, the , , , and
/// objects are all absolute values and are not relative. The position and size of the
/// view is described by .
///
///
/// If Computed, one or more of the , , , or
/// objects are relative to the and are computed at layout
/// time.
///
///
public enum LayoutStyle
{
///
/// Indicates the , , , and
/// objects are all absolute values and are not relative. The position and size of the view
/// is described by .
///
Absolute,
///
/// Indicates one or more of the , , , or
///
/// objects are relative to the and are computed at layout time. The position and size of
/// the
/// view
/// will be computed based on these objects at layout time. will provide the absolute computed
/// values.
///
Computed
}