MESCIUS SPREAD for Windows Forms 15.0J
Undo() メソッド
使用例 

PerformUndoAction で実行した最後のアクションを取り消して、繰り返しリストに追加します。
構文
'宣言
 
Public Overloads Function Undo() As Boolean
public bool Undo()
使用例
次のサンプルコードは、Undoメソッドを使用します。
//Type in a cell, then click the undo and redo buttons
private void button1_Click(object sender, EventArgs e)
        {
           fpSpread1.UndoManager.Undo();
            
        }

private void button2_Click(object sender, EventArgs e)
        {
            
            fpSpread1.UndoManager.Redo();
        }
'Type in a cell, then click the undo and redo buttons
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        FpSpread1.UndoManager.Undo()
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        FpSpread1.UndoManager.Redo()
    End Sub
参照

UndoManager クラス
UndoManager メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.