# LayoutElement

The `LayoutElement` class represents an element in a layout result. It combines the element's geometry with its origin information.

## Definition

*Namespace:* Dynamsoft.Utility

```csharp
public class LayoutElement
```

## Properties

| Property | Type | Description |
|----------|------|-------------|
| [`quad`](#quad) | *Quadrilateral* | Geometric coordinates of the element. |
| [`source`](#source) | *LayoutElementSource* | Origin of this element (Input / Inferred / None). |

### quad

```csharp
public Quadrilateral quad;
```

**See Also**

[Quadrilateral](https://www.dynamsoft.com/capture-vision/docs/server/programming/dotnet/api-reference/core/basic-classes/quadrilateral.md)

### source

```csharp
public LayoutElementSource source = LayoutElementSource.LES_NONE;
```

**See Also**

[LayoutElementSource](https://www.dynamsoft.com/capture-vision/docs/server/programming/dotnet/api-reference/utility/enum-layout-element-source.md)
