> ## 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.ArchiveColumnData

# <a id="SuperOffice_WebApi_Data_ArchiveColumnData" /> Class ArchiveColumnData

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

Carrier object for ArchiveColumnData.
Data carrier class for an item (cell) in an archive. This class contains properties and members for three distinct values: The (visible) display value; the tooltip hint, and the link hint.

```csharp theme={null}
public class ArchiveColumnData
```

#### Inheritance

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

#### Inherited Members

[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)

## Constructors

### <a id="SuperOffice_WebApi_Data_ArchiveColumnData__ctor" /> ArchiveColumnData()

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_ArchiveColumnData_DisplayValue" /> DisplayValue

The visible display value for an archive cell. It is always a string, and other data types are converted to string according to the invariant culture. "\[I:123]" or "\[D:2014-09-13]". Further conversion to the local culture is the responsibility of the client.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_ArchiveColumnData_LinkHint" /> LinkHint

The link hint consists of information to construct an actual link; additional information (such as a view context) must be provided by the client, who is also responsible for building the link. The content of the link will generally be one or more ids, such as contact\_id=123.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_ArchiveColumnData_TooltipHint" /> TooltipHint

The tooltip hint is either a text to be shown (after resource tag substitution), or a tooltip key to be given to the tooltip provider system in order to asynchronoously retrieve the actual tooltip.

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

#### Property Value

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

## See Also

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


## Related topics

- [SuperOffice.WebApi.Data.ColumnDataDictionary](/en/api/reference/webapi/SuperOffice.WebApi.Data.ColumnDataDictionary.md)
- [SuperOffice.WebApi.Agents.ArchiveAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ArchiveAgent.md)
- [SuperOffice.WebApi.Data.RelatedData](/en/api/reference/webapi/SuperOffice.WebApi.Data.RelatedData.md)
- [SuperOffice.WebApi.Agents.IArchiveAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IArchiveAgent.md)
- [SuperOffice.WebApi.Data.ArchiveColumnInfo](/en/api/reference/webapi/SuperOffice.WebApi.Data.ArchiveColumnInfo.md)
- [SuperOffice.WebApi.Data.Archive GetArchiveListByColumnsRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Archive_GetArchiveListByColumnsRequest.md)
