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