074064a2 b4f6 3a15 6c2f 13b370649e86 - iAJTin/iExportEngine GitHub Wiki
Additional header content
Gets or sets the preferred top 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 Top { get; set; }VB
Public Property Top As Single
Get
SetType: Single
Preferred top margin of document. The default is 20.
ITEE Object Element Usage
<Margins Top="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
};