officefileapi-devexpress-dot-spreadsheet-dot-drawings-dot-shapeoutline.md
Gets or sets the width of the shape line.
Namespace : DevExpress.Spreadsheet.Drawings
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
double Width { get; set; }
Property Width As Double
| Type | Description |
|---|---|
| Double |
A Double value that is the line width in points.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Width 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.
floorOptions.Outline.SetSolidFill(Color.FromArgb(0xB4, 0x95, 0xDE));
floorOptions.Outline.Width = 1.25;
#endregion #CustomWallsAndFloor
floorOptions.Outline.SetSolidFill(Color.FromArgb(&HB4, &H95, &HDE))
floorOptions.Outline.Width = 1.25
#End Region ' #CustomWallsAndFloor
See Also