This unit is being created specifically for compatibility with Delphi. It should only be used for constants and type definitions that are included in the Delphi Windows unit. This is only done for compatibility
+
+
A lazarus resource is an ansistring, with a name and a valuetype. Both name and valuetype are ansistrings as well.
+Lazarus resources are normally included via an include directive in the initialization part of a unit. To create such include files use the BinaryToLazarusResourceCode procedure.
+To create a LRS file from an LFM file use the LFMtoLRSfile function which transforms the LFM text to binary format and stores it as Lazarus resource include file.
+
+
The result is of type TCaption, a string type for the caption of a control: may be translated
+
+
The Loaded method is called when a component has finished loading; the various ancestor classes copy properties from client and parent classes into the newly loaded component, and notify any child components of changes that have been made
+
+
The various ancestor methods first create the object, then initialise sizes, styles, fonts and positions of subsidiary objects
+
+
The ancestor destructor removes the resources that have been used, in a systematic and orderly way
+
+
Calls the inherited method which works out the correct bounds, sets style, fonts and colours, performs any pending resize operations
+
+
Calls the inherited method, which prepares to free the handle for this window
+