namespace Terminal.Gui;
///
/// Indicates the mode for a object.
///
public enum DimPercentMode
{
///
/// The dimension is computed using the View's position ( or ).
///
Position = 0,
///
/// The dimension is computed using the View's .
///
ContentSize = 1
}