Back to Devexpress

ShapeOutline.Width Property

officefileapi-devexpress-dot-spreadsheet-dot-drawings-dot-shapeoutline.md

latest2.6 KB
Original Source

ShapeOutline.Width Property

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

Declaration

csharp
double Width { get; set; }
vb
Property Width As Double

Property Value

TypeDescription
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.

spreadsheet-document-api-chart-examples/CS/SpreadsheetDocServerChartAPISamples/CodeExamples/ViewOptionsActions.cs#L268

csharp
floorOptions.Outline.SetSolidFill(Color.FromArgb(0xB4, 0x95, 0xDE));
floorOptions.Outline.Width = 1.25;
#endregion #CustomWallsAndFloor

spreadsheet-document-api-chart-examples/VB/SpreadsheetDocServerChartAPISamples/CodeExamples/ViewOptionsActions.vb#L255

vb
floorOptions.Outline.SetSolidFill(Color.FromArgb(&HB4, &H95, &HDE))
            floorOptions.Outline.Width = 1.25
#End Region ' #CustomWallsAndFloor

See Also

ShapeOutline Interface

ShapeOutline Members

DevExpress.Spreadsheet.Drawings Namespace