Share

AcAxMove

C++

HRESULT AXAUTOEXP AcAxMove(
    AcAxObjectRef& objRef, 
    VARIANT fromPoint, 
    VARIANT toPoint
);

File

axboiler.h

Description

Moves the specified object. fromPoint and toPoint define a translation vector that is used to transform the object.

Except for the datatype of the first parameter, this function is identical to the overload that takes an object ID parameter.

Parameters

Parameters Description
objRef Input object reference of object to move
fromPoint VARIANT containing a SAFEARRAY of doubles (VT_R8)
toPoint VARIANT containing a SAFEARRAY of doubles (VT_R8)

Was this information helpful?