Show / Hide Table of Contents

Class ReportLabelLayoutEntity

Carrier object for ReportLabelLayoutEntity. Services for the ReportLabelLayoutEntity Carrier is available from the Report Agent.

Inheritance
object
ReportLabelLayoutEntity
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class ReportLabelLayoutEntity : Carrier
Examples

Get ReportLabelLayoutEntity 123 using the agent:

using SuperOffice;
using SuperOffice.CRM.Services;

using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
   var agent = new ReportAgent();
   var reportLabelLayoutEntity = agent.GetReportLabelLayoutEntity( 123 );
}

Constructors

ReportLabelLayoutEntity()

Default constructor

Declaration
public ReportLabelLayoutEntity()
See Also
IReportAgent

Properties

BottomMargin

Bottom margin in twips

Declaration
[DataMember]
public virtual uint BottomMargin { get; set; }
Property Value
Type Description
uint
See Also
IReportAgent

CountColumns

Number og columns

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

CountRows

Number of rows

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

Description

Description

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

LeftMargin

Left margin in twips

Declaration
[DataMember]
public virtual uint LeftMargin { get; set; }
Property Value
Type Description
uint
See Also
IReportAgent

Name

Name of the label layout

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

Orientation

Paper orientation: 1=portrait, 2=landscape

Declaration
[DataMember]
public virtual ReportPaperOrientation Orientation { get; set; }
Property Value
Type Description
ReportPaperOrientation
See Also
IReportAgent

PaperHeight

Paper height in twips

Declaration
[DataMember]
public virtual uint PaperHeight { get; set; }
Property Value
Type Description
uint
See Also
IReportAgent

PaperWidth

Paper width in twips

Declaration
[DataMember]
public virtual uint PaperWidth { get; set; }
Property Value
Type Description
uint
See Also
IReportAgent

ReportLabelLayoutId

Primary key

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

RightMargin

Right margin in twips

Declaration
[DataMember]
public virtual uint RightMargin { get; set; }
Property Value
Type Description
uint
See Also
IReportAgent

TopMargin

Top margin in twips

Declaration
[DataMember]
public virtual uint TopMargin { get; set; }
Property Value
Type Description
uint
See Also
IReportAgent

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
string

The carrier contents.

See Also
IReportAgent

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
IReportAgent

See Also

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