| File: MS\Internal\Shaping\ShapingOptions.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationCore\PresentationCore.csproj (PresentationCore) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // // // Description: ShapingOptions enum // // namespace MS.Internal.Shaping { /// <summary> /// Shaping control options /// </summary> [Flags] internal enum ShapingOptions { /// <summary> /// Default behavior /// </summary> None = 0, /// <summary> /// Make Unicode control characters visible /// </summary> DisplayControlCode = 0x00000001, /// <summary> /// Ligatures are not to be used for shaping /// </summary> InhibitLigature = 0x00000002, } }