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

setActionIsDiscardable(_:)

Sets whether the next undo or redo action is discardable. 次の取り消しまたはやり直しアクションが利用できなくされるかどうかを設定します。

Declaration 宣言

func setActionIsDiscardable(_ discardable: Bool)

Parameters パラメータ

discardable

Specifies if the action is discardable. true if the next undo or redo action can be discarded; false otherwise. 動作が廃棄可能であるかどうかを指定します。true、もし次の取り消しまたはやり直し動作が廃棄可能であるならば;そうでなければfalse

Discussion 議論

Specifies that the latest undo action may be safely discarded when a document can not be saved for any reason. ある書類が何らかの理由のために保存されることができない場合に、最後の取り消し操作が安全に廃棄されるかもしれないことを指定します。

An example might be an undo action that changes the viewable area of a document. ひとつの例は、ある書類の可視領域を変更する取り消し動作であるかもしれません。

To find out if an undo group contains only discardable actions, look for the NSUndoManagerGroupIsDiscardableKey in the userInfo dictionary of the NSUndoManagerWillCloseUndoGroup. ある取り消しグループが廃棄可能な動作のみを含むかどうかを見つけ出すには、NSUndoManagerGroupIsDiscardableKeyNSUndoManagerWillCloseUndoGroupuserInfo辞書において捜してください。

See Also 参照

Discardable Undo and Redo Actions 取り消しとやり直しアクションを利用できなくする