RAD Studio
ContentsIndex
PreviousUpNext
Storing and Loading Unpublished Properties

By default, only published properties are loaded and saved with a component. However, it is possible to load and save unpublished properties. This allows you to have persistent properties that do not appear in the Object Inspector. It also allows components to store and load property values that Delphi does not know how to read or write because the value of the property is too complex. For example, the TStrings object can't rely on Delphi's automatic behavior to store and load the strings it represents and must use the following mechanism. 

You can save unpublished properties by adding code that tells Delphi how to load and save your property's value. 

To write your own code to load and save properties, use the following steps:

  1. Create methods to store and load the property value.
  2. Override the DefineProperties method, passing those methods to a filer object.

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!