IGdiPalette.cs 630 B

123456789101112131415161718192021222324252627282930
  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 Palette object.
  10. /// </summary>
  11. public interface IGdiPalette : IGdiObject
  12. {
  13. #region Properties
  14. /// <summary>
  15. /// Object Version.
  16. /// </summary>
  17. /// <returns></returns>
  18. int Version { get; }
  19. /// <summary>
  20. /// Object Entries.
  21. /// </summary>
  22. /// <returns></returns>
  23. int[] Entries { get; }
  24. #endregion
  25. }
  26. }