ClearModified
Mark the active project as not modified. This is usually done before exiting or before loading another project in order to avoid the prompt asking the user to save it.
void ClearModified( )
void
EX1
// For this example to run, create a project, save it, and then modify it // (for example by modifying the value in a worksheet cell). void run_Project_ClearModified() { if (Project.IsModified()) out_str("Project has been modified"); else out_str("Project has NOT been modified"); // Now clear the modified flag: Project.ClearModified(); // Now it must be NOT modifed because we cleared it above. if (Project.IsModified()) out_str("Project has been modified"); else out_str("Project has NOT been modified"); }
DataRange::Undo
origin.h