Class ReportLabelLayoutEntity
Carrier object for ReportLabelLayoutEntity. Services for the ReportLabelLayoutEntity Carrier is available from the Report Agent.
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
Properties
BottomMargin
Bottom margin in twips
Declaration
[DataMember]
public virtual uint BottomMargin { get; set; }
Property Value
Type | Description |
---|---|
uint |
See Also
CountColumns
Number og columns
Declaration
[DataMember]
public virtual short CountColumns { get; set; }
Property Value
Type | Description |
---|---|
short |
See Also
CountRows
Number of rows
Declaration
[DataMember]
public virtual short CountRows { get; set; }
Property Value
Type | Description |
---|---|
short |
See Also
Description
Description
Declaration
[DataMember]
public virtual string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
LeftMargin
Left margin in twips
Declaration
[DataMember]
public virtual uint LeftMargin { get; set; }
Property Value
Type | Description |
---|---|
uint |
See Also
Name
Name of the label layout
Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Orientation
Paper orientation: 1=portrait, 2=landscape
Declaration
[DataMember]
public virtual ReportPaperOrientation Orientation { get; set; }
Property Value
Type | Description |
---|---|
ReportPaperOrientation |
See Also
PaperHeight
Paper height in twips
Declaration
[DataMember]
public virtual uint PaperHeight { get; set; }
Property Value
Type | Description |
---|---|
uint |
See Also
PaperWidth
Paper width in twips
Declaration
[DataMember]
public virtual uint PaperWidth { get; set; }
Property Value
Type | Description |
---|---|
uint |
See Also
ReportLabelLayoutId
Primary key
Declaration
[DataMember]
public virtual int ReportLabelLayoutId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
RightMargin
Right margin in twips
Declaration
[DataMember]
public virtual uint RightMargin { get; set; }
Property Value
Type | Description |
---|---|
uint |
See Also
TopMargin
Top margin in twips
Declaration
[DataMember]
public virtual uint TopMargin { get; set; }
Property Value
Type | Description |
---|---|
uint |
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. |