8 references to Custom
System.Drawing.Common (2)
System\Drawing\Pen.cs (2)
661
if (value is < DashStyle.Solid or > DashStyle.
Custom
)
676
if (value == DashStyle.
Custom
)
System.Drawing.Common.Tests (6)
System\Drawing\PenTests.cs (5)
538
Assert.Equal(DashStyle.
Custom
, pen.DashStyle);
590
[InlineData(DashStyle.
Custom
, new float[] { 1 })]
614
pen.DashStyle = DashStyle.
Custom
;
616
Assert.Equal(DashStyle.
Custom
, pen.DashStyle);
622
[InlineData(DashStyle.
Custom
+ 1)]
System\Drawing\SystemPensTest.cs (1)
68
AssertExtensions.Throws<ArgumentException>(null, () => pen.DashStyle = DashStyle.
Custom
);