Gets or sets a value indicating whether absolute coordinates of top-level objects in the document are relative to page margins or to physical page bounds.

The default value of this property is false, which indicates the traditional behavior with coordinates relative to page edges. If set to true, coordinates are considered relative to page margins.

For instance, if this property is false (default), all page margins are 1 in, and a top-level object's X coordinate is specified as ".5in", the object would be located 0.5in from the left edge of the page - i.e. in the middle of the left page margin.

If this property is set to true, the same object would be located 0.5in to the right of the left page margin - 1.5in from the left edge of the page.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
[XmlAttributeAttribute]
[DefaultValueAttribute(false)]
public bool TopLevelPositionRelativeToPageMargins { get; set; }
Visual Basic
<XmlAttributeAttribute> _
<DefaultValueAttribute(False)> _
Public Property TopLevelPositionRelativeToPageMargins As Boolean
	Get
	Set

Remarks

The default value for this property is False.

See Also