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

beginUndoGrouping

Marks the beginning of an undo group. ある取り消しグループの始まりを印します。

Declaration 宣言

- (void)beginUndoGrouping;

Discussion 議論

All individual undo operations before a subsequent endUndoGrouping message are grouped together and reversed by a later undo message. By default undo groups are begun automatically at the start of the event loop, but you can begin your own undo groups with this method, and nest them within other groups. 続いて起こるendUndoGroupingメッセージより前の全ての個々の取り消し操作は、一緒にグループにされます、そしてその後のundoメッセージで取り消されます。初期状態では取り消しグループは自動的にイベントループの始まりで開始されます、しかしあなたはあなた独自の取り消しグループそれらをこのメソッドで開始できます、そしてそれらを他のグループ内に入れ子にできます。

This method posts an NSUndoManagerCheckpointNotification unless a top-level undo is in progress. It posts an NSUndoManagerDidOpenUndoGroupNotification if a new group was successfully created. このメソッドはNSUndoManagerCheckpointNotificationを投函します、あるトップレベル取り消しが処理中である場合を除いて。それはNSUndoManagerDidOpenUndoGroupNotificationを投函します、もし新しいグループがうまく作成されたならば。

See Also 参照

Creating Undo Groups 取り消しグループを作成する