OBS/Adminhilfe/Delphi IMP *.Pas-Dateien
Beim erzeugen von IMP_xxxxx.pas Dateien ist folgendes zu beachten:
Progrqamm dcimporter.exe
Datei:Pict001.jpg
Achtung Pfade importieren! LIB.TXT
Es werden nur Properties und Funktionen automatisch erzeugt die unter PUBLIC deklariert worden sind!
Falls published und public zusammen gebraucht werden hier ein weg ( TDesign_Shape ) wir nacher benutzt
TSim_Shape = class(TShape)
private
protected
FSim_ResFunc : String;
FSim_ResAdd : Boolean;
FSim_Data1 : String;
FSim_Data2 : String;
FSim_Data3 : String;
public
constructor Create(AOwner: TComponent); override;
destructor destroy; override;
property Sim_ResFunc : string read FSim_ResFunc write FSim_ResFunc ;
property Sim_ResAdd : boolean read FSim_ResAdd write FSim_ResAdd ;
property Sim_Data1 : string read FSim_Data1 write FSim_Data1 ;
property Sim_Data2 : string read FSim_Data2 write FSim_Data2 ;
property Sim_Data3 : string read FSim_Data3 write FSim_Data3 ;
end;
//---------------------------------------------
TDesign_Shape = class(TSim_Shape)
published
property Sim_ResFunc;
property Sim_ResAdd;
property Sim_Data1;
property Sim_Data2;
property Sim_Data3;
end;
Auto import 17:43, 4. Jul. 2011 (CEST)