| File: System\Windows\Media\Generated\PenLineCap.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. // // // This file was generated, please do not edit it directly. // // Please see MilCodeGen.html for more information. // namespace System.Windows.Media { /// <summary> /// PenLineCap - Enum which descibes the drawing of the ends of a line. /// </summary> public enum PenLineCap { /// <summary> /// Flat - Flat line cap. /// </summary> Flat = 0, /// <summary> /// Square - Square line cap. /// </summary> Square = 1, /// <summary> /// Round - Round line cap. /// </summary> Round = 2, /// <summary> /// Triangle - Triangle line cap. /// </summary> Triangle = 3, } }