LayoutChildComponent: {
    enabled: boolean;
    excludeFromLayout: boolean;
    fitHeightProportion: number;
    fitWidthProportion: number;
    maxHeight: number | null;
    maxWidth: number | null;
    minHeight: number;
    minWidth: number;
}

LayoutChild Component Properties.

Type declaration

  • enabled: boolean

    Whether the component is enabled.

    true
    
  • excludeFromLayout: boolean

    When enabled, the child will be excluded from all layout calculations.

    false
    
  • fitHeightProportion: number

    The amount of additional vertical space that the element should take up, if necessary to satisfy a Stretch/Shrink fitting calculation.

    0
    
  • fitWidthProportion: number

    The amount of additional horizontal space that the element should take up, if necessary to satisfy a Stretch/Shrink fitting calculation.

    0
    
  • maxHeight: number | null

    The maximum height the element should be rendered at.

    null
    
  • maxWidth: number | null

    The maximum width the element should be rendered at.

    null
    
  • minHeight: number

    The minimum height the element should be rendered at.

    0
    
  • minWidth: number

    The minimum width the element should be rendered at.

    0