class MAGES::ComponentLibrary::SpatialLayoutSubModule::LayoutEngine

Overview

Represents a layout engine. More…

class LayoutEngine
{
public:
    // properties

    int Priority;

    // methods

    LayoutResult Layout(IEnumerable<SpatialElement> elements);
};

// direct descendants

class LoadingLayoutEngine;

Detailed Documentation

Represents a layout engine.

Properties

int Priority

Gets the priority of this layout engine.

Methods

LayoutResult Layout(IEnumerable<SpatialElement> elements)

Layouts the specified elements.

Parameters:

elements

The elements to layout.

Returns:

The new positions for this layout.