[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Called when a property must be set
Source position: variants.pp line 222
function IVarInvokeable.SetProperty( |
var V: tvardata; |
const Name: string; |
const Value: tvardata |
):Boolean; |
V |
|
Variant to write property on |
Name |
|
Name of property to write |
Value |
|
Value to set property to. |
Indicate whether the property was written correctly
DoFunction is called whenever a variant property is written. Value is filled with the new value of the property. V is the variant on which the property is written. The Name is the name of the property to write.
The function must return True if the property was written 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 read |