home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 October
/
Chip_2002-10_cd1.bin
/
zkuste
/
delphi
/
kolekce
/
d56
/
FLEXCEL.ZIP
/
FlexCel
/
UFlxFullDataSets.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2002-06-10
|
805b
|
40 lines
unit UFlxFullDataSets;
interface
uses contnrs;
type
TFullDataSet= class
public
Text: string;
RowOffset: integer;
Col: integer;
constructor Create(const aText: string; const aRowOffset, aCol: integer);
end;
TFullDataSetList= class(TObjectList)
private
function GetItems(index: integer): TFullDataSet;
public
property Items[index: integer]: TFullDataSet read GetItems; default;
end;
implementation
{ TFullDataSetList }
function TFullDataSetList.GetItems(index: integer): TFullDataSet;
begin
Result:= Inherited Items[index] as TFullDataSet;
end;
{ TFullDataSet }
constructor TFullDataSet.Create(const aText: string; const aRowOffset,
aCol: integer);
begin
Text:= aText;
RowOffset:=aRowOffset;
Col:=aCol;
end;
end.