Split a property reference to component reference and property name.
Source position: rttiutils.pp line 139
function ParseStoredItem( |
const Item: string; |
var CompName: string; |
var PropName: string |
):Boolean; |
Item |
|
Property reference to parse. |
CompName |
|
Component part of property reference. |
PropName |
|
Property name part of property reference. |
True if Item contains a valid property reference.
ParseStoredItem parses the property reference Item and splits it in a reference to a component (returned in CompName) and a name of a property (returned in PropName). This function basically does the opposite of CreateStoredItem. Note that both names should be non-empty, i.e., at least 1 dot character must appear in Item.
If an error occurred during parsing, False is returned.
|
Concatenates component and property name. |
|
|
Update a stringlist with object references. |
|
|
Store a list of component properties. |
|
|
Load a list of component properties. |