Convert a variant to a dynamic arrayt.
Source position: variants.pp line 154
| procedure DynArrayFromVariant( | 
| var DynArray: Pointer; | 
| const V: Variant; | 
| TypeInfo: Pointer | 
| ); | 
| DynArray | 
 | Dynamic array to fill with data. | 
| V | 
 | Variant to get data from. | 
| TypeInfo | 
 | Type information for dynamic array. | 
DynArrayFromVariant transforms a variant array to a dynamic array. It uses TypInfo to calculate the length, element type and dimension of the array.
The opposite transformation can be performed with DynArrayToVariant.
| 
 | Raise an EVariantArrayCreateError error. | |
| 
 | Create a variant array. | |
| 
 | Create a variants array of a series of values. | |
| 
 | Convert a Dynamic Array To a Variant. |