| |
| Cancels the article parts preparation and all wanted changes. |
| |
 |
void CancelParts () |
|
| |
|
|
| |
| Samples |
| |
 |
C++ |
| |
// Prepare the Artcl object to view the current parts...
pArtcl->PrepareParts (ppaView);
// ...and then decide to cancel this action.
pArtcl->CancelParts ();
|
|
 |
C# |
| |
// Prepare the Artcl object to view the current parts...
oArtcl.PrepareParts (ePreparePartsAction.ppaView);
// ...and then decide to cancel this action.
oArtcl.CancelParts ();
|
|
 |
VBS |
| |
' Prepare the Artcl object to view the current parts...
Call oArtcl.PrepareParts(ppaView)
' ...and then decide to cancel this action.
Call oArtcl.CancelParts()
|
|
 |
VB.NET |
| |
' Prepare the Artcl object to view the current parts...
oArtcl.PrepareParts(ePreparePartsAction.ppaView)
' ...and then decide to cancel this action.
oArtcl.CancelParts()
|
|