File: commonui\System\Drawing\Advanced\CustomLineCapType.cs
Project: ndp\fx\src\System.Drawing.csproj (System.Drawing)
//------------------------------------------------------------------------------
// <copyright file="CustomLineCapType.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Drawing.Drawing2D {
 
    using System.Diagnostics;
 
    using System.Drawing;
    using System;
 
    /**
     * Various custom line cap types
     */
    internal enum CustomLineCapType
    {
        Default = 0,
        AdjustableArrowCap = 1
    }
 
}