TManufacturingOperation.InformativeQuantity
| TManufacturingOperation = class (TObject) | Interface de TManufacturingOperation | Exemples de TManufacturingOperation |
Quantité informative.
Syntaxe
property InformativeQuantity: Float read GetInformativeQuantity write SetInformativeQuantity
Remarques
Exemples
var gammeCroissant: TManufacturing;
var gammeOperation: TManufacturingOperation;
gammeCroissant:=TManufacturing.ConnectByGPAOID('gammeCroissant v0.00');
try
gammeOperation:=gammeCroissant.GetOperationByNumber(10);
gammeOperation.InformativeQuantity:=50.23;
gammeCroissant.post;
finally
gammeCroissant.free;
end;
var gammeOperation: TManufacturingOperation;
gammeCroissant:=TManufacturing.ConnectByGPAOID('gammeCroissant v0.00');
try
gammeOperation:=gammeCroissant.GetOperationByNumber(10);
gammeOperation.InformativeQuantity:=50.23;
gammeCroissant.post;
finally
gammeCroissant.free;
end;
var gammeCroissant: TManufacturing;
var gammeOperation: TManufacturingOperation;
gammeCroissant:=TManufacturing.ConnectByGPAOID('gammeCroissant v0.00');
try
gammeOperation:=gammeCroissant.GetOperationByNumber(10);
informationDlg('Quantité informative: '+FloatToStr(gammeOperation.InformativeQuantity)+'');
finally
gammeCroissant.free;
end;
var gammeOperation: TManufacturingOperation;
gammeCroissant:=TManufacturing.ConnectByGPAOID('gammeCroissant v0.00');
try
gammeOperation:=gammeCroissant.GetOperationByNumber(10);
informationDlg('Quantité informative: '+FloatToStr(gammeOperation.InformativeQuantity)+'');
finally
gammeCroissant.free;
end;