22 references to LineJoin
System.Drawing (1)
System.Drawing.cs (1)
42[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Drawing2D.LineJoin))]
System.Drawing.Common (2)
Special\NotSupported.cs (2)
859public System.Drawing.Drawing2D.LineJoin LineJoin { get { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } } 1454public System.Drawing.Drawing2D.LineJoin StrokeJoin { get { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } }
System.Drawing.Common.Tests (19)
System\Drawing\Drawing2D\CustomLineCapTests.cs (8)
50Assert.Equal(LineJoin.Miter, customLineCap.StrokeJoin); 121[InlineData(LineJoin.Miter)] // Default value 122[InlineData(LineJoin.Bevel)] 123[InlineData(LineJoin.Round)] 124[InlineData(LineJoin.MiterClipped)] 126[InlineData(LineJoin.Miter - 1)] 127[InlineData(LineJoin.MiterClipped + 1)] 128public void StrokeJoin_SetThenGet_Success(LineJoin lineJoin)
System\Drawing\PenTests.cs (10)
696[InlineData(LineJoin.Bevel)] 697[InlineData(LineJoin.Miter)] 698[InlineData(LineJoin.MiterClipped)] 699[InlineData(LineJoin.Round)] 700public void LineJoin_SetValid_GetReturnsExpected(LineJoin lineJoin) 709[InlineData(LineJoin.Miter - 1)] 710[InlineData(LineJoin.MiterClipped + 1)] 711public void LineJoin_SetInvalid_ThrowsInvalidEnumArgumentException(LineJoin lineJoin) 726AssertExtensions.Throws<ArgumentException>(null, () => pen.LineJoin = LineJoin.Miter); 1218Assert.Equal(LineJoin.Miter, pen.LineJoin);
System\Drawing\SystemPensTest.cs (1)
72AssertExtensions.Throws<ArgumentException>(null, () => pen.LineJoin = LineJoin.MiterClipped);