Deletes the graphical link overrides in the current view.
Namespace: Autodesk.Revit.DBAssembly: RevitAPI (in RevitAPI.dll) Version: 26.4.0.0 (26.4.0.0)
Syntax
C#
public void RemoveLinkOverrides(
ElementId linkId
)
Parameters
- linkId ElementId
-
The id of the RevitLinkType or RevitLinkInstance.
Exceptions
Remarks
If the input linkId references
RevitLinkType, then the link overrides will be set to default.
If the input linkId references
RevitLinkInstance, then the link overrides will be removed and the settings of
RevitLinkType will be used for this instance.
Example
C#
public static void RemoveLinkOverridesInView(View view, ElementId linkId)
{
using (Transaction transaction = new Transaction(view.Document, "Remove link overrides"))
{
transaction.Start();
view.RemoveLinkOverrides(linkId);
transaction.Commit();
}
}
See Also
Reference