Back to Devexpress

XRControl.LeftF Property

xtrareports-devexpress-dot-xtrareports-dot-ui-dot-xrcontrol-0d78f82e.md

latest3.8 KB
Original Source

XRControl.LeftF Property

Specifies the X-coordinate of the control’s left edge (measured in report units).

Namespace : DevExpress.XtraReports.UI

Assembly : DevExpress.XtraReports.v25.2.dll

NuGet Package : DevExpress.Reporting.Core

Declaration

csharp
[Browsable(false)]
public virtual float LeftF { get; set; }
vb
<Browsable(False)>
Public Overridable Property LeftF As Single

Property Value

TypeDescription
Single

A Single value, representing the X-coordinate of the left edge of the control.

|

Remarks

The X-coordinate of the control’s left edge is the X-coordinate of the left edge of the RectangleF object returned by this control’s XRControl.BoundsF property.

The following code snippets (auto-collected from DevExpress Examples) contain references to the LeftF property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-dashboard-add-custom-information-to-the-exported-dashboard/CS/WinViewer_CustomExport/Form1.cs#L24

csharp
customHeader.Text = "TEST TEST TEST";
customHeader.LeftF = 300;
customHeader.WidthF = 300;

web-forms-dashboard-add-custom-information-to-exported-dashboard/CS/WebDashboard_CustomExport/Default.aspx.cs#L49

csharp
customHeader.Text = "Additioanl Header Text";
customHeader.LeftF = 300;
customHeader.WidthF = 300;

winforms-dashboard-add-custom-information-to-the-exported-dashboard/VB/WinViewer_CustomExport/Form1.vb#L23

vb
customHeader.Text = "TEST TEST TEST"
customHeader.LeftF = 300
customHeader.WidthF = 300

web-forms-dashboard-add-custom-information-to-exported-dashboard/VB/WebDashboard_CustomExport/Default.aspx.vb#L48

vb
customHeader.Text = "Additioanl Header Text"
customHeader.LeftF = 300
customHeader.WidthF = 300

See Also

RightF

XRControl Class

XRControl Members

DevExpress.XtraReports.UI Namespace