|
|
|
SftMaskContents.CanUndo Property |
Determines whether the last action can be reversed.
Syntax
VB.NET |
Boolean = object.CanUndo As Boolean |
||
VB |
Boolean = object.CanUndo As Boolean |
||
C#.NET |
bool Boolean = object.CanUndo; |
||
VC++ |
VARIANT_BOOL Boolean = object->CanUndo;
|
||
C |
HRESULT object->get_CanUndo(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.CanUndo : WordBool; |
object
A SftMaskContents object.
Boolean
Determines whether the last action can be reversed.
Boolean |
Description |
True |
The last action can be reversed. |
False |
The last action cannot be reversed. |
Comments
The CanUndo property determines whether the last action can be reversed.
CanUndo can be used to determine if any actions can be reversed. Contents.Undo is used to reverse the last action.