Returns the size in actions of the Redo buffer.
Returns the size in actions of the Redo buffer.
Visual Basic |
---|
Public Property RedoSize As Long |
Returns the size in actions of the Redo buffer.
Returns the size in actions of the Redo buffer.
Private Sub mnuUndoCount_Click() On Error Resume Next MsgBox "Undo Buffer: " & WebKitX1.UndoSize & ", Redo Buffer: " & WebKitX1.RedoSize End Sub
private void menuItemUndoRedoCount_Click(object sender, EventArgs e) { MessageBox.Show("Undo Buffer: " + WebKitXCEF31.UndoSize + ", Redo Buffer: " + WebKitXCEF31.RedoSize, "HTML5 Pad", MessageBoxButtons.OK); }