Determining What to Store

From RAD Studio
Jump to: navigation, search

Go Up to Storing and Loading Properties


You can control whether Delphi stores each of your components' properties. By default, all properties in the published part of the class declaration are stored. You can choose not to store a given property at all, or you can designate a function that determines dynamically whether to store the property.

To control whether Delphi stores a property, add the stored directive to the property declaration, followed by True, False, or the name of a Boolean function.

See Also