RVTDocs.com
Namespace: Autodesk.Revit.DB Class: LocationPoint

LocationPoint.Point

Property
Description:
The physical location of the element.
Remarks:
Setting this property is not supported for some elements supporting LocationPoints, such as SpotDimensions.
Syntax
public XYZ Point { get; set; }
Examples
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;
    }
}