XRLine.LineWidth Property
Specifies the line width in pixels as a floating point value.
Namespace: DevExpress.XtraReports.UI
Assembly: DevExpress.XtraReports.v24.1.dll
NuGet Package: DevExpress.Reporting.Core
Declaration
[DefaultValue(1F)]
[SRCategory(ReportStringId.CatAppearance)]
public float LineWidth { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Single | 1 | A Single value that specifies the line width in pixels. |
Example
This example demonstrates how to create an XRLine object and set some of its properties.
using System.Drawing;
using System.Drawing.Drawing2D;
using DevExpress.XtraReports.UI;
// ...
public XRLine CreateXRLine() {
// Create an XRLine object.
XRLine line = new XRLine();
// Set its color.
line.ForeColor = Color.Red;
// Set its width.
line.LineWidth = 0.5F;
// Set its style.
line.LineStyle = DashStyle.DashDot;
// Set its size.
line.SizeF = new SizeF(300F, 100F);
// Set its direction.
line.LineDirection = LineDirection.BackSlant;
return line;
}
See Also