home *** CD-ROM | disk | FTP | other *** search
- {*********************************************************}
- {* ESBASE.PAS 1.05 *}
- {* Copyright (c) 1997-98 TurboPower Software Co *}
- {* All rights reserved. *}
- {*********************************************************}
-
- {$I ES.INC}
-
- {$B-} {Complete Boolean Evaluation}
- {$I+} {Input/Output-Checking}
- {$P+} {Open Parameters}
- {$T-} {Typed @ Operator}
- {$W-} {Windows Stack Frame}
- {$X+} {Extended Syntax}
-
- {$IFNDEF Win32}
- {$G+} {286 Instructions}
- {$N+} {Numeric Coprocessor}
- {$C MOVEABLE,DEMANDLOAD,DISCARDABLE}
- {$ENDIF}
-
- unit EsBase0;
-
- interface
-
- uses
- DsgnIntf;
-
- type
- {property editor for the EsControl property of the TEsAttachedLabel component}
- TEsControlProperty = class(TClassProperty)
- public
- function GetAttributes: TPropertyAttributes;
- override;
- end;
-
-
- implementation
-
-
- {*** TEsControlProperty ***}
-
- function TEsControlProperty.GetAttributes : TPropertyAttributes;
- begin
- Result := [paReadOnly];
- end;
-
- end.
-