Skip to content

0c8145bc acab 0608 3f15 29569346182b

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

MarginsModel.Right Property

Additional header content

Gets or sets the preferred right 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 Right { get; set; }

VB

Public Property Right As Single
	Get
	Set

Property Value

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

Remarks

ITEE Object Element Usage

<Margins Right="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