81a6449a 8fe6 8f16 4303 bc0a6c18da09 - iAJTin/iExportEngine GitHub Wiki
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)
C#
public float Left { get; set; }VB
Public Property Left As Single
Get
SetType: Single
Preferred left margin of document. The default is 20.
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 |
X value indicates that the writer supports this element.
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
};