Empty the page undo stack.
Syntax: |
---|
DlxGraphixDocument.PurgePageManagementUndo() |
Return Value
If the operation ends correctly it returns true. Returns false if the document is closed.
Example
Copy code | |
---|---|
var doc = DlxApp.GetJob().FindDocument("Examples Sch", DlxApp.DOCTYPE_SCHEMATIC);
if (doc.IsValid())
{
doc.PurgePageManagementUndo();
}
|