Instance Method インスタンスメソッド

fixParagraphStyleAttribute(in:)

Fixes the paragraph style attributes in aRange, assigning the first paragraph style attribute value in each paragraph to all characters of the paragraph. aRangeの中の段落スタイル属性を修繕します、各段落の中の最初の段落スタイル属性値を段落の全ての文字に割り当てます。

Declaration 宣言

func fixParagraphStyleAttribute(in range: NSRange)

Parameters パラメータ

aRange

The range of characters. 文字の範囲。

Discussion 議論

This method extends the range as needed to cover the last paragraph partially contained. A paragraph is delimited by any of these characters, the longest possible sequence being preferred to any shorter: このメソッドは、範囲を必要に応じて拡張して、部分的に含まれる最後の段落を含むようにします。段落は、これらの文字のどれかによって区切られます、最も長い可能なシーケンスがいくらかでもより短いものより選ばれます:

  • U+000D (\r or CR) U+000D(\r または CR)

  • U+000A (\n or LF) U+000A(\n または LF)

  • U+2029 (Unicode paragraph separator) \r\n, in that order (also known as CRLF)

Raises an rangeException if any part of aRange lies beyond the end of the receiver’s characters. rangeExceptionを引き起こします、もしaRangeの何らかの部分がレシーバの持つ文字の終わりを越えているならば。

See Also 参照

Fixing Attributes After Changes