Instance Method
インスタンスメソッド
setAttributes:range:
Sets the attributes for the characters in the specified range to the specified attributes.
指定された範囲の中の文字に対する属性をこの指定された属性に設定します。
Parameters
パラメータ
attributes
A dictionary containing the attributes to set. Attribute keys can be supplied by another framework or can be custom ones you define. For information about the system-supplied attribute keys, see the Constants section in NSAttributedString
.
設定することになる属性を含んでいるある辞書。属性キーは、別のフレームワークによって提供されることが可能です、またはあなたが定義するあつらえのものであることが可能です。システム提供の属性キーについての情報として、定数の節をNSAttributedString
で見てください。
aRange
The range of characters whose attributes are set.
この範囲の文字の属性が設定されます。
Discussion
議論
These new attributes replace any attributes previously associated with the characters in aRange
. Raises an NSRangeException
if any part of aRange
lies beyond the end of the receiver’s characters.
これらの新しい属性は、以前にaRange
の中の文字と結び付けられた何らかの属性を置き換えます。NSRangeException
を引き起こします、もしaRange
の何らかの部分がレシーバの持つ文字の終わりを越えているならば。
To set attributes for a zero-length NSMutableAttributedString
displayed in a text view, use the NSTextView
method typingAttributes
.
テキストビューにおいて表示されるゼロ長NSMutableAttributedString
に属性を設定するには、NSTextView
のメソッドtypingAttributes
を使ってください。
See Also
参照
Changing Attributes
- addAttribute:value:range:
Adds an attribute with the given name and value to the characters in the specified range.
与えられた名前と値を持つある属性をこの指定された範囲の中の文字に加えます。
- addAttributes:range:
Adds the given collection of attributes to the characters in the specified range.
与えられた属性のコレクションをこの指定された範囲の中の文字に加えます。
- removeAttribute:range:
Removes the named attribute from the characters in the specified range.
指定された範囲の中の文字から指名された属性を取り除きます。
- applyFontTraits:range:
Applies the font attributes specified by mask
to the characters in aRange
.
mask
によって指定されるフォント属性をaRange
の中の文字に適用します。
- setAlignment:range:
Sets the alignment characteristic of the paragraph style attribute for the characters in aRange
to alignment
.
aRange
の中の文字に対する段落スタイル属性の整列特性をalignment
に設定します。
- subscriptRange:
Decrements the value of the superscript attribute for characters in aRange
by 1.
aRange
の中の文字に対する上付き属性の値を1だけ漸減します。
- superscriptRange:
Increments the value of the superscript attribute for characters in aRange
by 1.
aRange
の中の文字に対する上付き属性の値を1だけ漸増します。
- unscriptRange:
Removes the superscript attribute from the characters in aRange
.
aRange
の中の文字に対する上付き属性を取り除きます。