Class CliLayoutComponent
- Namespace
- ItTiger.TigerCli.Primitives
- Assembly
- ItTiger.TigerCli.dll
Base layout constraints shared by renderable components and grids.
public abstract class CliLayoutComponent
- Inheritance
-
CliLayoutComponent
- Derived
- Inherited Members
Properties
DefaultCellStyle
Default style applied before row, column, and cell styles.
public CliCellStyle? DefaultCellStyle { get; set; }
Property Value
Height
Exact height constraint.
public int? Height { get; set; }
Property Value
- int?
IsInteractive
Whether the component participates in interactive rendering.
public bool IsInteractive { get; set; }
Property Value
MaxHeight
Hard upper height bound.
public int? MaxHeight { get; set; }
Property Value
- int?
MaxWidth
Hard upper width bound.
public int? MaxWidth { get; set; }
Property Value
- int?
MinHeight
Hard lower height bound.
public int? MinHeight { get; set; }
Property Value
- int?
MinWidth
Hard lower width bound.
public int? MinWidth { get; set; }
Property Value
- int?
SoftMaxHeight
Soft upper height target used for best-effort fitting.
public int? SoftMaxHeight { get; set; }
Property Value
- int?
SoftMaxWidth
Soft upper width target used for best-effort fitting.
public int? SoftMaxWidth { get; set; }
Property Value
- int?
Width
Exact width constraint.
public int? Width { get; set; }
Property Value
- int?