KMPDFConfig.swift 319 B

1234567891011121314151617181920
  1. //
  2. // KMPDFConfig.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by Niehaoyu on 2024/10/21.
  6. //
  7. import Cocoa
  8. @objc public enum KMAnnotationsAlignmentType: Int, CaseIterable{
  9. case None = 0
  10. case Left
  11. case XCenter
  12. case Right
  13. case Top
  14. case YCenter
  15. case Bottom
  16. case Horizontal
  17. case Vertical
  18. }