CTParagraphStyleSpecifier

https://developer.apple.com/reference/coretext/ctparagraphstylespecifier

public enum CTParagraphStyleSpecifier : UInt32 {
         
         
         case alignment //对齐属性
         
         case firstLineHeadIndent //首行缩进
         
         case headIndent //段头缩进
         
         case tailIndent //段尾缩进
         
         case tabStops //制表符模式
         
         case defaultTabInterval //默认tab间隔
         
         case lineBreakMode //换行模式
         
         case lineHeightMultiple //多行高
         
         case maximumLineHeight //最大行高
         
         case minimumLineHeight //最小行高
         
         
         case paragraphSpacing  //段落间距,在段的末尾加上间隔,值为负数
         
         case paragraphSpacingBefore //段落前间距,在段落前面加上间隔
         
         case baseWritingDirection //基本书写方向
         
         case maximumLineSpacing //最大行距
         
         case minimumLineSpacing //最小行距
         
         case lineSpacingAdjustment //行距调整
         
         case lineBoundsOptions // 控制线边缘与前后边距对齐的选项。
         
         
         case count  // 样式说明符的数量。
        }

你可能感兴趣的:(CTParagraphStyleSpecifier)