ActiveReports 9
UndoCount Property
Example 

Returns the number of undone actions.
Syntax
'Declaration
 
Public ReadOnly Property UndoCount As System.Integer
public System.int UndoCount {get;}

Property Value

Integer.
Example
If(this.ardMain.UndoManager.UndoCount == 0 )
{
    this.tSTDUndo.Enabled = False;
    this.mnuEditUndo.Enabled = False;
}
Else
{
    this.tSTDUndo.Enabled = True;
    this.mnuEditUndo.Enabled = True;
}
If Me.ardMain.UndoManager.UndoCount = 0 Then
    Me.tSTDUndo.Enabled = False
    Me.mnuEditUndo.Enabled = False
Else
    Me.tSTDUndo.Enabled = True
    Me.mnuEditUndo.Enabled = True
End If
See Also

Reference

UndoManager Class
UndoManager Members

 

 


Copyright © 2016 GrapeCity, inc. All rights reserved

Support Forum