Show / Hide Table of Contents

Class Dash

Dashboard configuration

Carrier object for Dash. Services for the Dash Carrier is available from the Dash Agent.
Inheritance
object
Dash
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.7.0.0")]
public class Dash : Carrier
Examples

Get Dash 123 using the agent:

using SuperOffice;
using SuperOffice.CRM.Services;

using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
   var agent = new DashAgent();
   var dash = agent.GetDash( 123 );
}

Constructors

Dash()

Default constructor

Declaration
public Dash()
See Also
IDashAgent

Properties

AssociateId

Associate who owns this dashboard

Declaration
[DataMember]
public virtual int AssociateId { get; set; }
Property Value
Type Description
int
See Also
IDashAgent

Columns

How many columns there will be in the dashboard.

Declaration
[DataMember]
public virtual int Columns { get; set; }
Property Value
Type Description
int
See Also
IDashAgent

DashboardId

Primary key

Declaration
[DataMember]
public virtual int DashboardId { get; set; }
Property Value
Type Description
int
See Also
IDashAgent

Description

Detailed description

Declaration
[DataMember]
public virtual string Description { get; set; }
Property Value
Type Description
string
See Also
IDashAgent

Name

The name of this dashboard

Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
Type Description
string
See Also
IDashAgent

PinForAll

True if pinned for all

Declaration
[DataMember]
public virtual short PinForAll { get; set; }
Property Value
Type Description
short
See Also
IDashAgent

PinForAssociates

Array of references to the pinned associates

Declaration
[DataMember]
public virtual int[] PinForAssociates { get; set; }
Property Value
Type Description
int[]
See Also
IDashAgent

PinForGroups

Array of references to the pinned groups

Declaration
[DataMember]
public virtual int[] PinForGroups { get; set; }
Property Value
Type Description
int[]
See Also
IDashAgent

Theme

The theme for this dashboard

Declaration
[DataMember]
public virtual DashTheme Theme { get; set; }
Property Value
Type Description
DashTheme
See Also
IDashAgent

UniqueId

GUID identifying a default dashboard from SuperOffice

Declaration
[DataMember]
public virtual string UniqueId { get; set; }
Property Value
Type Description
string
See Also
IDashAgent

VisibleForAll

True if visible for all

Declaration
[DataMember]
public virtual short VisibleForAll { get; set; }
Property Value
Type Description
short
See Also
IDashAgent

VisibleForAssociates

Array of references to the visible for associates

Declaration
[DataMember]
public virtual int[] VisibleForAssociates { get; set; }
Property Value
Type Description
int[]
See Also
IDashAgent

VisibleForGroups

Array of references to the visible for groups

Declaration
[DataMember]
public virtual int[] VisibleForGroups { get; set; }
Property Value
Type Description
int[]
See Also
IDashAgent

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
string

The carrier contents.

See Also
IDashAgent

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.

See Also
IDashAgent

See Also

IDashAgent
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top