OnIncludeCheckpoint
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