|
Cancels the project preparation and all wanted changes. |
|
|
void CancelProject () |
|
|
|
|
Samples |
|
|
C++ |
|
// Prepare the project object to consult the current details...
pProject->PrepareProject (paView);
// ...and then decide to cancel this action.
pProject->CancelProject ();
|
|
|
C# |
|
// Prepare the project object to consult the current details...
oProject.PrepareProject (ePrepareAction.paView);
// ...and then decide to cancel this action.
oProject.CancelProject ();
|
|
|
VBS |
|
' Prepare the project object to consult the current details...
Call oProject.PrepareProject(paView)
' ...and then decide to cancel this action.
Call oProject.CancelProject()
|
|
|
VB.NET |
|
' Prepare the project object to consult the current details...
oProject.PrepareProject(ePrepareAction.paView)
' ...and then decide to cancel this action.
oProject.CancelProject()
|
|