Class Dash
Dashboard configuration
Carrier object for Dash. Services for the Dash Carrier is available from the Dash Agent.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
Properties
AssociateId
Associate who owns this dashboard
Declaration
[DataMember]
public virtual int AssociateId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
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
DashboardId
Primary key
Declaration
[DataMember]
public virtual int DashboardId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
Description
Detailed description
Declaration
[DataMember]
public virtual string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
Name
The name of this dashboard
Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
PinForAll
True if pinned for all
Declaration
[DataMember]
public virtual short PinForAll { get; set; }
Property Value
| Type | Description |
|---|---|
| short |
See Also
PinForAssociates
Array of references to the pinned associates
Declaration
[DataMember]
public virtual int[] PinForAssociates { get; set; }
Property Value
| Type | Description |
|---|---|
| int[] |
See Also
PinForGroups
Array of references to the pinned groups
Declaration
[DataMember]
public virtual int[] PinForGroups { get; set; }
Property Value
| Type | Description |
|---|---|
| int[] |
See Also
Theme
The theme for this dashboard
Declaration
[DataMember]
public virtual DashTheme Theme { get; set; }
Property Value
| Type | Description |
|---|---|
| DashTheme |
See Also
UniqueId
GUID identifying a default dashboard from SuperOffice
Declaration
[DataMember]
public virtual string UniqueId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
VisibleForAll
True if visible for all
Declaration
[DataMember]
public virtual short VisibleForAll { get; set; }
Property Value
| Type | Description |
|---|---|
| short |
See Also
VisibleForAssociates
Array of references to the visible for associates
Declaration
[DataMember]
public virtual int[] VisibleForAssociates { get; set; }
Property Value
| Type | Description |
|---|---|
| int[] |
See Also
VisibleForGroups
Array of references to the visible for groups
Declaration
[DataMember]
public virtual int[] VisibleForGroups { get; set; }
Property Value
| Type | Description |
|---|---|
| int[] |
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. |