> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.ReportLabelLayoutEntity

# <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity" /> Class ReportLabelLayoutEntity

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for ReportLabelLayoutEntity.

```csharp theme={null}
public class ReportLabelLayoutEntity : Carrier
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[ReportLabelLayoutEntity](SuperOffice.WebApi.Data.ReportLabelLayoutEntity.md)

#### Inherited Members

[Carrier.TableRight](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_TableRight),
[Carrier.FieldProperties](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_FieldProperties),
[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Examples

Get ReportLabelLayoutEntity 123 using the WebApi client:
<pre><code class="lang-csharp">var configuration = new WebApiConfiguration(url);
var agent = new ReportAgent(configuration);
var reportLabelLayoutEntity = agent.GetReportLabelLayoutEntity( 123 );</code></pre>

## Constructors

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity__ctor" /> ReportLabelLayoutEntity()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public ReportLabelLayoutEntity()
```

## Properties

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_BottomMargin" /> BottomMargin

Bottom margin in twips

```csharp theme={null}
public virtual uint BottomMargin { get; set; }
```

#### Property Value

[uint](https://learn.microsoft.com/dotnet/api/system.uint32)

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_CountColumns" /> CountColumns

Number og columns

```csharp theme={null}
public virtual short CountColumns { get; set; }
```

#### Property Value

[short](https://learn.microsoft.com/dotnet/api/system.int16)

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_CountRows" /> CountRows

Number of rows

```csharp theme={null}
public virtual short CountRows { get; set; }
```

#### Property Value

[short](https://learn.microsoft.com/dotnet/api/system.int16)

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_Description" /> Description

Description

```csharp theme={null}
public virtual string Description { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_LeftMargin" /> LeftMargin

Left margin in twips

```csharp theme={null}
public virtual uint LeftMargin { get; set; }
```

#### Property Value

[uint](https://learn.microsoft.com/dotnet/api/system.uint32)

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_Name" /> Name

Name of the label layout

```csharp theme={null}
public virtual string Name { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_Orientation" /> Orientation

Paper orientation: 1=portrait, 2=landscape
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public ReportPaperOrientation? Orientation { get; set; }
```

#### Property Value

[ReportPaperOrientation](SuperOffice.WebApi.Data.ReportPaperOrientation.md)?

#### See Also

[ReportLabelLayoutEntity](SuperOffice.WebApi.Data.ReportLabelLayoutEntity.md).[Orientation\_String](SuperOffice.WebApi.Data.ReportLabelLayoutEntity.md#SuperOffice_WebApi_Data_ReportLabelLayoutEntity_Orientation_String)

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_Orientation_String" /> Orientation\_String

Paper orientation: 1=portrait, 2=landscape
Raw string enum value.

```csharp theme={null}
[JsonProperty("Orientation")]
public string Orientation_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[ReportLabelLayoutEntity](SuperOffice.WebApi.Data.ReportLabelLayoutEntity.md).[Orientation](SuperOffice.WebApi.Data.ReportLabelLayoutEntity.md#SuperOffice_WebApi_Data_ReportLabelLayoutEntity_Orientation)

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_PaperHeight" /> PaperHeight

Paper height in twips

```csharp theme={null}
public virtual uint PaperHeight { get; set; }
```

#### Property Value

[uint](https://learn.microsoft.com/dotnet/api/system.uint32)

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_PaperWidth" /> PaperWidth

Paper width in twips

```csharp theme={null}
public virtual uint PaperWidth { get; set; }
```

#### Property Value

[uint](https://learn.microsoft.com/dotnet/api/system.uint32)

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_ReportLabelLayoutId" /> ReportLabelLayoutId

Primary key

```csharp theme={null}
public virtual int ReportLabelLayoutId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_RightMargin" /> RightMargin

Right margin in twips

```csharp theme={null}
public virtual uint RightMargin { get; set; }
```

#### Property Value

[uint](https://learn.microsoft.com/dotnet/api/system.uint32)

### <a id="SuperOffice_WebApi_Data_ReportLabelLayoutEntity_TopMargin" /> TopMargin

Top margin in twips

```csharp theme={null}
public virtual uint TopMargin { get; set; }
```

#### Property Value

[uint](https://learn.microsoft.com/dotnet/api/system.uint32)

## See Also

[ReportAgent](SuperOffice.WebApi.Agents.ReportAgent.md)


## Related topics

- [SuperOffice.WebApi.Agents.ReportAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ReportAgent.md)
- [SuperOffice.WebApi.Agents.IReportAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IReportAgent.md)
- [SuperOffice.WebApi.Data.ReportPaperOrientation](/en/api/reference/webapi/SuperOffice.WebApi.Data.ReportPaperOrientation.md)
- [SuperOffice.WebApi.Data.PersonEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.PersonEntity.md)
- [SuperOffice.WebApi.Data.DocumentEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.DocumentEntity.md)
- [SuperOffice.WebApi.Data.FieldMetadataType](/en/api/reference/webapi/SuperOffice.WebApi.Data.FieldMetadataType.md)
