mirror of
https://github.com/amerkoleci/Vortice.Win32.git
synced 2026-01-15 16:46:01 +08:00
29 lines
1.2 KiB
C#
29 lines
1.2 KiB
C#
// ------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
// ------------------------------------------------------------------------------
|
|
|
|
namespace Win32.Graphics.Direct2D;
|
|
|
|
/// <include file='../Direct2D.xml' path='doc/member[@name="D2D1_LINE_JOIN"]/*' />
|
|
/// <unmanaged>D2D1_LINE_JOIN</unmanaged>
|
|
public enum LineJoin : uint
|
|
{
|
|
/// <include file='../Direct2D.xml' path='doc/member[@name="D2D1_LINE_JOIN::D2D1_LINE_JOIN_MITER"]/*' />
|
|
/// <unmanaged>D2D1_LINE_JOIN_MITER</unmanaged>
|
|
Miter = 0,
|
|
/// <include file='../Direct2D.xml' path='doc/member[@name="D2D1_LINE_JOIN::D2D1_LINE_JOIN_BEVEL"]/*' />
|
|
/// <unmanaged>D2D1_LINE_JOIN_BEVEL</unmanaged>
|
|
Bevel = 1,
|
|
/// <include file='../Direct2D.xml' path='doc/member[@name="D2D1_LINE_JOIN::D2D1_LINE_JOIN_ROUND"]/*' />
|
|
/// <unmanaged>D2D1_LINE_JOIN_ROUND</unmanaged>
|
|
Round = 2,
|
|
/// <include file='../Direct2D.xml' path='doc/member[@name="D2D1_LINE_JOIN::D2D1_LINE_JOIN_MITER_OR_BEVEL"]/*' />
|
|
/// <unmanaged>D2D1_LINE_JOIN_MITER_OR_BEVEL</unmanaged>
|
|
MiterOrBevel = 3,
|
|
}
|