TManufacturingSubOperation.CountManufacturingStandardControlItem
| TManufacturingSubOperation = class (TObject) | Interface de TManufacturingSubOperation | Exemples de TManufacturingSubOperation |
Compte le nombre d'élément de contrôle standard.
Syntaxe
function CountManufacturingStandardControlItem(): Integer
Remarques
Exemples
var gammeCroissant: TManufacturing;
var gammeSubOperation: TManufacturingSubOperation;
gammeCroissant:=TManufacturing.ConnectByGPAOID('gammeCroissant v0.00');
try
gammeSubOperation:=gammeCroissant.GetOperationByNumber(10).GetManufacturingSubOperation(0);
InformationDlg('Nombre d''élément de contrôle standard: '+IntToStr(gammeSubOperation.CountManufacturingStandardControlItem));
finally
gammeCroissant.free;
end;
var gammeSubOperation: TManufacturingSubOperation;
gammeCroissant:=TManufacturing.ConnectByGPAOID('gammeCroissant v0.00');
try
gammeSubOperation:=gammeCroissant.GetOperationByNumber(10).GetManufacturingSubOperation(0);
InformationDlg('Nombre d''élément de contrôle standard: '+IntToStr(gammeSubOperation.CountManufacturingStandardControlItem));
finally
gammeCroissant.free;
end;