Skip to content

81a6449a 8fe6 8f16 4303 bc0a6c18da09

Fernando Garcia edited this page May 8, 2018 · 1 revision

MarginsModel.Left Property

Additional header content

Gets or sets the preferred left margin of document.

Namespace: iTin.Export.Model
Assembly: iTin.Export.Core (in iTin.Export.Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#

public float Left { get; set; }

VB

Public Property Left As Single
	Get
	Set

Property Value

Type: Single
Preferred left margin of document. The default is 20.

Remarks

ITEE Object Element Usage

<Margins Left="float".../>

Compatibility table with native writers.

Comma-Separated Values
CsvWriter
Tab-Separated Values
TsvWriter
SQL Script
SqlScriptWriter
XML Spreadsheet 2003
Spreadsheet2003TabularWriter
No has effect No has effect No has effect X
A X value indicates that the writer supports this element.

Examples

In the following example shows how create a new margins object. XML

<Margins Top="23" Left="23" Right="23" Bottom="23"/>

C#

MarginsModel margins = new MarginsModel
                           {
                               Top = 23,
                               Left = 23,
                               Right = 23,
                               Bottom = 23
                           };

See Also

Reference

MarginsModel Class
iTin.Export.Model Namespace

Clone this wiki locally