* Add SetReading

This commit is contained in:
michael 2019-05-11 15:23:50 +00:00
parent 8ec22dc064
commit c149455dce

View File

@ -556,6 +556,7 @@ type
procedure Loaded; virtual;
procedure Loading; virtual;
procedure SetWriting(Value: Boolean); virtual;
procedure SetReading(Value: Boolean); virtual;
procedure Notification(AComponent: TComponent; Operation: TOperation); virtual;
procedure PaletteCreated; virtual;
procedure SetAncestor(Value: Boolean);
@ -3386,6 +3387,14 @@ begin
Exclude(FComponentState,csWriting);
end;
procedure TComponent.SetReading(Value: Boolean);
begin
If Value then
Include(FComponentState,csReading)
else
Exclude(FComponentState,csReading);
end;
Procedure TComponent.Notification(AComponent: TComponent;
Operation: TOperation);