Empty the page undo stack.

syntaxSyntax:
DlxGraphixDocument.PurgePageManagementUndo()

Return Value

If the operation ends correctly it returns true. Returns false if the document is closed.

Example

  Copy codeCopy code
var doc = DlxApp.GetJob().FindDocument("Examples Sch", DlxApp.DOCTYPE_SCHEMATIC);
if (doc.IsValid())
{
  doc.PurgePageManagementUndo();
}

See also