IGdiPatternBrush.cs 508 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WMFConverter.Gdi
  7. {
  8. /// <summary>
  9. /// Graphics Device Interface - Represents a Pattern Brush object.
  10. /// </summary>
  11. public interface IGdiPatternBrush : IGdiObject
  12. {
  13. #region Properties
  14. /// <summary>
  15. /// Object Patterns.
  16. /// </summary>
  17. /// <returns></returns>
  18. byte[] Pattern { get; }
  19. #endregion
  20. }
  21. }