mobileFX WebKitX CEF3 ActiveX 4.x
WebKitXCEF3Lib ActiveX Control / WebKitXCEF3 Object / UndoSize Property
In This Topic
    UndoSize Property
    In This Topic
    Description

    Returns the size in actions of the Undo buffer.

    Property type
    Read-only property
    Syntax
    Visual Basic
    Public Property UndoSize As Long
    Return Type

    Returns the size in actions of the Undo buffer.

    Remarks

    Returns the size in actions of the Undo buffer.

    Example
    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);
    }
    See Also