This topic has not yet been rated - Rate this topic

lineJoin property

Gets or sets the type of corner that is created when two lines meet.

HTML Canvas 2D Context, Section 6Internet Explorer 9

Syntax

HRESULT value = object.put_lineJoin( sJoinStyle);HRESULT value = object.get_lineJoin(* sJoinStyle);

Property values

Type: BSTR

bevel

A filled triangle connects the two lines that are joined, creating a beveled corner.

round

A filled arc connects the two lines, creating a rounded corner.

miter

Default. The outside edges of the lines are continued until they intersect and the resulting triangle is filled, creating a sharp or pointed corner.

Standards information

Remarks

The miter option is affected by the ICanvasRenderingContext2D::miterLimit property.

 

 

Build date: 11/12/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.