[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.Weight

Weight Property

Weight

Gets or sets the weight of the line.

This value represents the thickness applied to the line formatting of the shape.

Declaration
double Weight { get; set; }
Property Weight As Double
Examples
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.Weight = 2.25;
double weight = line.Weight;