[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Called when a property must be read
Source position: variants.pp line 220
function IVarInvokeable.GetProperty( |
var Dest: tvardata; |
const V: tvardata; |
const Name: string |
):Boolean; |
Dest |
|
On success, contains the value of the property |
V |
|
Variant to read property from |
Name |
|
Name of property to read. |
Indicate whether the property was read correctly
DoFunction is called whenever a variant property is read. Dest must be filled with the value of the property on success. V is the variant on which the property is read. The Name is the name of the property to read.
The function must return True if the property was read correctly, False otherwise.
|
Called for methods that return a result (functions) |
|
|
Called for methods that do not return a result (procedures) |
|
|
Called when a property must be set |