Set Path Type of Revit Link to Relative from Absolute

I am looking how to set Revit Link Path Type to Relative from Absolute.

The Reference Type is a Revit Link Type parameter but the Path Type no idea.

image

Looks to be a Revit Link Type property.

PathType Property (revitapidocs.com)

2 Likes

Parameter Name: Path Type, does not work
image

It is a Property, not a parameter. You will need to get the LinkType and then set the Property

RVTLinkeType.PathType = PathType.Absolute

I assume there will be some Python involved unless there is a SetProperty node out there.
PathType Enumeration (revitapidocs.com)

2 Likes