# Enumeration LayoutElementSource

`LayoutElementSource` indicates the origin of a layout element.

```csharp
public enum LayoutElementSource
{
    /** No element exists at this logical grid position (used for alignment in non-uniform rows). */
    LES_NONE = 0,
    /** Element is provided from the original input array. */
    LES_INPUT = 1,
    /** Element is reconstructed or filled in by the algorithm. */
    LES_INFERRED = 2
}
```
