Show / Hide Table of Contents

Class DashTile

Dashboard Tile configuration

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

Get DashTile 123 using the agent:

using SuperOffice;
using SuperOffice.CRM.Services;

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

Constructors

DashTile()

Default constructor

Declaration
public DashTile()
See Also
IDashAgent

Properties

DashTileDefinition

The tile definition entity

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

DashboardId

The associated dashboard

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

DashboardTileId

Primary key

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

Height

Height used by this tile in the dashboard

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

Rank

Rank order

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

Width

Width used by this tile in the dashboard

Declaration
[DataMember]
public virtual int Width { 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