TManufacturingLink.NextAttachPoint

TManufacturingLink = class (TObject)Interface de TManufacturingLinkExemples de TManufacturingLink

Type d'attache entre opérations: attache de l'opération de destination

Syntaxe

property NextAttachPoint: TManufacturingAttachPoint read GetNextAttachPoint write SetNextAttachPoint

Remarques

Non renseigné

Exemples

var gammeCroissant: TManufacturing;
var links: TManufacturingLinks;
var link: TManufacturingLink;

gammeCroissant:=TManufacturing.ConnectByGPAOID('croissant v1.00');
try
   links:=gammeCroissant.GetManufacturingLinks;
   if links.count>0 then begin
      link:=links.links[0];
      link.NextAttachPoint:=mapBegin;
   end;
   gammeCroissant.post;
finally
   gammeCroissant.free;
end;
// Modification du type d'attache entre deux opérations.
var gammeCroissant: TManufacturing;
var links: TManufacturingLinks;
var link: TManufacturingLink;

gammeCroissant:=TManufacturing.ConnectByGPAOID('croissant v1.00');
try
   links:=gammeCroissant.GetManufacturingLinks;
   if links.count>0 then begin
      link:=links.links[0];
      case link.NextAttachPointof
         mapBegin: informationDlg('début');
         mapEnd: informationDlg('fin');
      end;
   end;
finally
   gammeCroissant.free;
end;
// Affichage du type d'attache entre deux opérations.

Classification

QuBESGamme TManufacturingLink