Return to Unit UltiboClasses
Description
To be documented
Class definitions
[Expand]
TStringObject = class(TListObject)
Note: A TObject with Prev/Next/Value/Hash for use in StringLists
|
|
private
|
FValue:String;
|
|
FData:TObject;
|
|
protected
|
FHash:LongWord;
|
|
|
procedure SetValue(const AValue:String); virtual;
|
|
public
|
property Value:String read FValue write SetValue;
|
|
property Data:TObject read FData write FData;
|
|
property Hash:LongWord read FHash;
|
|
Function declarations
[Expand]
procedure TStringObject.SetValue(const AValue:String);
Description: To be documented
Return to Unit Reference