1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // KMPDFConfig.swift
- // PDF Reader Pro
- //
- // Created by Niehaoyu on 2024/10/21.
- //
- import Cocoa
- //注释对齐方式
- @objc public enum KMAnnotationsAlignmentType: Int, CaseIterable {
- case None = 0
- case Left
- case XCenter
- case Right
- case Top
- case YCenter
- case Bottom
- case Horizontal
- case Vertical
- }
- //工具类型
- @objc public enum KMPDFViewToolsType: Int, CaseIterable {
- case Select = 0
- case Scroll
- case Content_Selection
- case Magnify
- case AreaZoom
- }
- //PDF模式
- @objc public enum KMPDFToolsMode: Int, CaseIterable {
- case PageEdit = 0
- case View_Tools
- case Markup
- case Edit
- case Form
- case Fill
- case Convert
- case Protect
- case Tools
-
- }
|