func setAttributes ([NSAttributedString.Key : Any]?, range: NSRange)
Sets the attributes for the characters in the specified range to the specified attributes.
指定された範囲の中の文字に対する属性をこの指定された属性に設定します。
func addAttribute (NSAttributedString.Key, value: Any, range: NSRange)
Adds an attribute with the given name and value to the characters in the specified range.
与えられた名前と値を持つある属性をこの指定された範囲の中の文字に加えます。
func addAttributes ([NSAttributedString.Key : Any], range: NSRange)
Adds the given collection of attributes to the characters in the specified range.
与えられた属性のコレクションをこの指定された範囲の中の文字に加えます。
func removeAttribute (NSAttributedString.Key, range: NSRange)
Removes the named attribute from the characters in the specified range.
指定された範囲の中の文字から指名された属性を取り除きます。
func setAlignment (NSTextAlignment, range: NSRange)
Sets the alignment characteristic of the paragraph style attribute for the characters in
aRange
to alignment
.
aRange
の中の文字に対する段落スタイル属性の整列特性をalignment
に設定します。
func setBaseWritingDirection (NSWritingDirection, range: NSRange)
Sets the base writing direction for the characters in
range
to writingDirection
.
range
の中の文字に対する基本書字方向をwritingDirection
に設定します。
func subscriptRange (NSRange)
Decrements the value of the superscript attribute for characters in
aRange
by 1.
aRange
の中の文字に対する上付き属性の値を1だけ漸減します。
func superscriptRange (NSRange)
Increments the value of the superscript attribute for characters in
aRange
by 1.
aRange
の中の文字に対する上付き属性の値を1だけ漸増します。
func unscriptRange (NSRange)
Removes the superscript attribute from the characters in
aRange
.
aRange
の中の文字に対する上付き属性を取り除きます。