File: System\Drawing\DashCap.cs
Web Access
Project: src\src\System.Drawing.Common\src\System.Drawing.Common.csproj (System.Drawing.Common)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Drawing.Drawing2D;
 
/// <summary>
/// Specifies the available dash cap styles with which a <see cref='Pen'/> can end a line.
/// </summary>
public enum DashCap
{
    Flat = 0,
    Round = 2,
    Triangle = 3
}