Skip to content

FixedLayout

Defined in: src/LayoutManager/LayoutStrategies/FixedLayout.ts:13

Layout will keep target’s initial size.

Extends

Constructors

new FixedLayout()

new FixedLayout(): FixedLayout

Returns

FixedLayout

Inherited from

LayoutStrategy.constructor

Properties

type

readonly static type: "fixed" = 'fixed'

Defined in: src/LayoutManager/LayoutStrategies/FixedLayout.ts:14

override by subclass for persistence (TS does not support static abstract)

Overrides

LayoutStrategy.type

Methods

calcBoundingBox()

calcBoundingBox(objects, context): undefined | LayoutStrategyResult

Defined in: src/LayoutManager/LayoutStrategies/LayoutStrategy.ts:68

Override this method to customize layout.

Parameters

objects

FabricObject[]

context

StrictLayoutContext

Returns

undefined | LayoutStrategyResult

Inherited from

LayoutStrategy.calcBoundingBox


calcLayoutResult()

calcLayoutResult(context, objects): undefined | LayoutStrategyResult

Defined in: src/LayoutManager/LayoutStrategies/LayoutStrategy.ts:33

Used by the LayoutManager to perform layout @TODO/fix: if this method is calcResult, should calc unconditionally. the condition to not calc should be evaluated by the layoutManager.

Parameters

context

StrictLayoutContext

objects

FabricObject[]

Returns

undefined | LayoutStrategyResult

layout result OR undefined to skip layout

Inherited from

LayoutStrategy.calcLayoutResult


getInitialSize()

getInitialSize(__namedParameters, __namedParameters): Point

Defined in: src/LayoutManager/LayoutStrategies/FixedLayout.ts:19

respect target’s initial size

Parameters

__namedParameters

StrictLayoutContext & CommonLayoutContext & object

__namedParameters

Pick<LayoutStrategyResult, "center" | "size">

Returns

Point

Overrides

LayoutStrategy.getInitialSize


shouldLayoutClipPath()

shouldLayoutClipPath(__namedParameters): undefined | boolean

Defined in: src/LayoutManager/LayoutStrategies/LayoutStrategy.ts:50

Parameters

__namedParameters

StrictLayoutContext

Returns

undefined | boolean

Inherited from

LayoutStrategy.shouldLayoutClipPath


shouldPerformLayout()

shouldPerformLayout(__namedParameters): boolean

Defined in: src/LayoutManager/LayoutStrategies/LayoutStrategy.ts:42

Parameters

__namedParameters

StrictLayoutContext

Returns

boolean

Inherited from

LayoutStrategy.shouldPerformLayout