mirror of
https://github.com/amerkoleci/Vortice.Win32.git
synced 2026-01-14 16:16:04 +08:00
New separated DirectWrite bindings
This commit is contained in:
28
src/Vortice.Win32.DirectWrite/Generated/ReadingDirection.cs
Normal file
28
src/Vortice.Win32.DirectWrite/Generated/ReadingDirection.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
// ------------------------------------------------------------------------------
|
||||
// <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.DirectWrite;
|
||||
|
||||
/// <include file='../DirectWrite.xml' path='doc/member[@name="DWRITE_READING_DIRECTION"]/*' />
|
||||
/// <unmanaged>DWRITE_READING_DIRECTION</unmanaged>
|
||||
public enum ReadingDirection : int
|
||||
{
|
||||
/// <include file='../DirectWrite.xml' path='doc/member[@name="DWRITE_READING_DIRECTION::DWRITE_READING_DIRECTION_LEFT_TO_RIGHT"]/*' />
|
||||
/// <unmanaged>DWRITE_READING_DIRECTION_LEFT_TO_RIGHT</unmanaged>
|
||||
LeftToRight = 0,
|
||||
/// <include file='../DirectWrite.xml' path='doc/member[@name="DWRITE_READING_DIRECTION::DWRITE_READING_DIRECTION_RIGHT_TO_LEFT"]/*' />
|
||||
/// <unmanaged>DWRITE_READING_DIRECTION_RIGHT_TO_LEFT</unmanaged>
|
||||
RightToLeft = 1,
|
||||
/// <include file='../DirectWrite.xml' path='doc/member[@name="DWRITE_READING_DIRECTION::DWRITE_READING_DIRECTION_TOP_TO_BOTTOM"]/*' />
|
||||
/// <unmanaged>DWRITE_READING_DIRECTION_TOP_TO_BOTTOM</unmanaged>
|
||||
TopToBottom = 2,
|
||||
/// <include file='../DirectWrite.xml' path='doc/member[@name="DWRITE_READING_DIRECTION::DWRITE_READING_DIRECTION_BOTTOM_TO_TOP"]/*' />
|
||||
/// <unmanaged>DWRITE_READING_DIRECTION_BOTTOM_TO_TOP</unmanaged>
|
||||
BottomToTop = 3,
|
||||
}
|
||||
Reference in New Issue
Block a user