OnAdjustStainLoad
This event triggers when the stain load is calculated. By setting the aWrapper.AdjustmentFactor field the load time can be adjusted, for example for two-coloured producs.
Example and syntax
procedure OnAdjustStainLoad(aWrapper:TStainInfoWrapper);
begin
if (aWrapper.OStainColor.Selcode <> aWrapper.IStainColor.Selcode) then
aWrapper.AdjustmentFactor := 1.5;
end;
Last updated
Was this helpful?