File: Core\CSharp\System\Windows\Media\Effects\Generated\EdgeProfile.cs
Project: wpf\src\PresentationCore.csproj (PresentationCore)
//---------------------------------------------------------------------------
//
// <copyright file="EdgeProfile.cs" company="Microsoft">
//    Copyright (C) Microsoft Corporation.  All rights reserved.
// </copyright>
//
// This file was generated, please do not edit it directly.
//
// Please see http://wiki/default.aspx/Microsoft.Projects.Avalon/MilCodeGen.html for more information.
//
//---------------------------------------------------------------------------
 
#if PRESENTATION_CORE
using SR=MS.Internal.PresentationCore.SR;
using SRID=MS.Internal.PresentationCore.SRID;
#else
using SR=System.Windows.SR;
using SRID=System.Windows.SRID;
#endif
 
namespace System.Windows.Media.Effects
{
    /// <summary>
    ///     EdgeProfile - Type of edge profile to use.
    /// </summary>
    public enum EdgeProfile
    {
        /// <summary>
        ///     Linear - Use a Linear edge profile
        /// </summary>
        Linear = 0,
 
        /// <summary>
        ///     CurvedIn - Use a curved in edge profile
        /// </summary>
        CurvedIn = 1,
 
        /// <summary>
        ///     CurvedOut - Use a curved out edge profile
        /// </summary>
        CurvedOut = 2,
 
        /// <summary>
        ///     BulgedUp - Use a bulged up edge profile
        /// </summary>
        BulgedUp = 3,
    }   
}