Class DashTile
Dashboard Tile configuration
Carrier object for DashTile. Services for the DashTile 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.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
Properties
DashTileDefinition
The tile definition entity
Declaration
[DataMember]
public virtual DashTileDefinition DashTileDefinition { get; set; }
Property Value
| Type | Description |
|---|---|
| DashTileDefinition |
See Also
DashboardId
The associated dashboard
Declaration
[DataMember]
public virtual int DashboardId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
DashboardTileId
Primary key
Declaration
[DataMember]
public virtual int DashboardTileId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
Height
Height used by this tile in the dashboard
Declaration
[DataMember]
public virtual int Height { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
Rank
Rank order
Declaration
[DataMember]
public virtual short Rank { get; set; }
Property Value
| Type | Description |
|---|---|
| short |
See Also
Width
Width used by this tile in the dashboard
Declaration
[DataMember]
public virtual int Width { 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. |