The value of a an object's property can be set and retrieved using ActiveX functions.
For example, this function call prompts you to pick a center point for a circle, then invokes the AddCircle method to draw the circle. The vlax-3d-point function converts the point you pick into the data type required by vla-addcircle.
(setq 3dpt (vlax-3d-point (getpoint "\nPick the center point for a circle: ")) (setq myCircle (vla-addcircle mspace 3dpt 2.0))
For example, use vla-get-center of a Circle object to draw concentric circles.
(vla-addCircle mSpace (vla-get-center myCircle) 1.0)