Usages of ILayoutStage
Properties
stack | in LayoutStageStack | Gets the raw list of stages in the stack. |
Method Return Values
addPostprocessor (ILayoutAlgorithm) | in LayoutStageStack | Adds a layout algorithm as a post-processing stage to the stack. | |
addPreprocessor (ILayoutAlgorithm) | in LayoutStageStack | Adds a layout algorithm as a pre-processing stage to the stack. | |
append (ILayoutStage) | in LayoutStageStack | Appends a new stage to the end of the stack. | |
appendCoreLayout (ILayoutAlgorithm) | in LayoutStageStack | Appends a core layout algorithm to the stack. | |
prepend (ILayoutStage) | in LayoutStageStack | Prepends a new stage to the beginning of the stack. | |
replace (Constructor<T>, T) | in LayoutStageStack | Replaces an existing layout stage of a specified type on the stack with a new stage. | |
createBestFitRotationStage (Size?) | in LayoutTransformations | Creates an ILayoutStage that rotates the LayoutGraph to best fit the given preferredAspectRatio . | |
createMirroringStage (boolean, number?) | in LayoutTransformations | Creates an ILayoutStage that mirrors the LayoutGraph. | |
createRotationStage (number, Point?) | in LayoutTransformations | Creates an ILayoutStage that rotates the LayoutGraph clockwise by a given rotationAngle . | |
createScalingStage (number?, number?, boolean?, Point?) | in LayoutTransformations | Creates an ILayoutStage that scales the LayoutGraph. | |
createTranslationStage (number?, number?, ILinkedItemEnumerable<LayoutNode>?) | in LayoutTransformations | Creates an ILayoutStage that translates the LayoutGraph. |
Method Parameters
append (ILayoutStage) | in LayoutStageStack | Appends a new stage to the end of the stack. | |
linkCoreLayouts (IEnumerable<ILayoutStage>, function(LayoutGraph):void?) | in LayoutStageStack | Chains a collection of ILayoutStage instances together and configures them into a stack. | |
prepend (ILayoutStage) | in LayoutStageStack | Prepends a new stage to the beginning of the stack. | |
remove (ILayoutStage) | in LayoutStageStack | Removes a specific stage from the stack. |
Implementing Types
LayoutStageBase | Abstract base class implementing ILayoutStage that handles the management of the coreLayout. |