OnIncludeCheckpoint

This event can be used to prevent a checkpoint from being included for an item line

Example and syntax

procedure OnIncludeCheckpoint(aParams:TScriptOnIncludeCheckPointParams);
begin
  // Only include the edgelist ("veneer strip") checkpoint if the sash has edgelists
  if (aparams.checkpoint.id = 3100) then  
    aParams.Include := HasEdgeList(aParams.Salesline) //HasEdgeList is a helper function that must be defined     
end;

Last updated

Was this helpful?