Class ArchiveListItem
Carrier object for ArchiveListItem. Services for the ArchiveListItem Carrier is available from the IArchiveAgent.
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class ArchiveListItem : Carrier
Constructors
ArchiveListItem()
Default constructor
Declaration
public ArchiveListItem()
See Also
Properties
ColumnData
Dictionary of column name - column data items. Each column data item contains a display value, a tooltip hint, a link hint, and an orderby value. <para/>The display value is encoded by the CultureDataFormatter and can be decoded / localized by that class; all other values are optional. <para/>Tooltip hints can be passed to the TooltipProvider (Tooltip service) to be translated into an actual tootip.
Declaration
public virtual ColumnDataDictionary ColumnData { get; set; }
Property Value
Type | Description |
---|---|
ColumnDataDictionary |
See Also
EntityName
The entity name of the ArchiveListItem. An ArchiveList may contain rows from different entities.
Declaration
public virtual string EntityName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
LinkHint
Link hint for the row, indicating things like navigation links that can be presented as clickable hyperlinks
Declaration
public virtual string LinkHint { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
PrimaryKey
The primary key for the row
Declaration
public virtual int PrimaryKey { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
StyleHint
Style hint for the row, for instance 'retired' for associates or 'private' for appointments. Presentation layers can interpret the style hints as they see fit.
Declaration
public virtual string StyleHint { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The carrier contents. |
See Also
ToString(String)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
String | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
String | The carrier contents. |