1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #region MIT License
- #endregion
- using System;
- namespace SharpFont
- {
-
-
-
- [CLSCompliant(false)]
- public enum GlyphBBoxMode : uint
- {
-
- Unscaled = 0,
-
- Subpixels = 0,
-
- Gridfit = 1,
-
- Truncate = 2,
-
- Pixels = 3
- }
- }
|