2027 Property
Changes 0
P

LocationPoint.Point

Description:
The physical location of the element.
Remarks:
Setting this property is not supported for some elements supporting LocationPoints, such as SpotDimensions.
public XYZ Point { get; set; }
void LocationMove(FamilyInstance column)
{
    LocationPoint columnPoint = column.Location as LocationPoint;
    if (null != columnPoint)
    {
        XYZ newLocation = new XYZ(10, 20, 0);
        // Move the column to the new location
        columnPoint.Point = newLocation;
    }
}