1234567891011121314151617181920 |
- //
- // 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
- }
|