TPlannedTransport.Data

redirigé depuis TPlannedTransport.GetData

TPlannedTransport = class (TObject)Interface de TPlannedTransportExemples de TPlannedTransport

Qubes 6.3 Données sous forme Nom=Valeur

Syntaxe

property Data: TStrings read write

Remarques

Lecture et écriture de la propriété
L'enregistrement de la propriété est fait par l'appel de la méthode Post

Exemples

uses SysUtils, QubesLogistics.PlannedTransports, QubesLogistics.ReceiptAndDelivery;

var myList : TStrings;

myList:=TStrings.Create;
myList.Add('Name=Value');
myList.Add('Name=Value2');
var attendu:=TPlannedTransport.Connect('ACL', TLogisticsFlowType.Purchase, '2877s555sq85', '56');
attendu.Data := myList;
attendu.Post;

Classification

QubesLogistics.PlannedTransports TPlannedTransport