Artcl::CancelParts (Interface: Artcl)
 
Cancels the article parts preparation and all wanted changes.
 
void CancelParts ()
 
 
See Also
CreateArtcl
Handling article parts using the SDK
PrepareParts
WriteParts
 
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()