Instance Method
インスタンスメソッド
rtf(from:documentAttributes:)
Returns a data object that contains an RTF stream corresponding to the characters and attributes within the specified range, omitting all attachment attributes.
指定された範囲内の文字および属性それらに一致するRTFストリームを含んでいるデータオブジェクトを返します、すべての添付書類属性を省きます。
Parameters
パラメータ
aRange
docAttributes
A required dictionary specifying the document attributes. The dictionary contains values from Document Types
and must at least contain documentType
.
書類属性を指定している必須辞書。辞書はDocument Types
からの値を含んでいます、そして少なくともdocumentType
を含んでいなければなりません。
Return Value
戻り値
A data object containing an RTF stream for the attributed string.
属性付き文字列に対するRTFストリームを含んでいるデータオブジェクト。
Discussion
議論
Writes the document-level attributes in docAttributes
, as explained in RTF Files and Attributed Strings.
docAttributes
の中の書類レベル属性を書いてください、RTF Files and Attributed Stringsで説明されるように。
Raises an rangeException
if any part of aRange
lies beyond the end of the receiver’s characters.
rangeException
を引き起こします、もしaRange
の何らかの部分がレシーバの持つ文字の終わりを越えているならば。
When writing data to the pasteboard, you can use the NSData
object as the first argument to the NSPasteboard
method setData(_:forType:)
, with a second argument of NSRTFPboardType
. Although this method strips attachments, it leaves the attachment characters in the text itself.
データをペーストボードに書き出す場合、あなたはNSData
オブジェクトをNSPasteboard
メソッドのsetData(_:forType:)
の最初の引数として、NSRTFPboardType
の2番目の引数とともに、使用できます。このメソッドは添付書類を剥ぎ取りますが、それは添付書類文字それらをテキスト自体の中にそのまま残します。
The NSText
method rtf(from:)
, on the other hand, does strip attachment characters when extracting RTF.