Registriert seit: 5. Apr 2008
Ort: Hamburg
46 Beiträge
Delphi XE Professional
|
Re: Problem mit Variant
5. Nov 2008, 10:30
Laut Hilfe so :
Sub GetOrigin( CATSafeArrayVariant ioOrigin)
Returns the origin point which the hole is anchored to.
This point belongs to a tangent plane.
Returns:
oOrigin A Safe Array made up of 3 doubles : X, Y, Z - Hole origin point coordinates
Example:
The following example returns in coordArray the coordinates of hole firstHole:
Call firstHole.GetOrigin coordArray
Set x = coordArray[1]
Set y = coordArray[2]
Set z = coordArray[3]
Ein SafeArray ist so beschrieben:
Defines a CATSafeArrayVariant type to be used by Automation interfaces.
CATSafeArrayVariant are one-dimensional arrays of CATVariants.
|