FastFillMode.cs 277 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace FastReport.Fonts
  5. {
  6. #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
  7. public enum FastFillMode
  8. {
  9. Alternate = 0,
  10. Winding = 1
  11. }
  12. }