How to get [No Override] Filter of View Template by Dynamo

I using Dynamo to change Filter of multi view template but Dynamo Node Can’t choose [No Override]

image

‘No override’ isn’t a fill pattern element, it’s a lack of fill pattern element. i.e. null.

Feed a null object into your foreground pattern input when creating the override (or no input, depends how you’re doing it and what nodes you’re using).

1 Like

Thank you for Idea but I using Python to get “null” OverrideGraphicSeting not work

Is there a problem with your other inputs? If I null out the input (or leave them blank) then I get ‘No override’ in Revit.

In your python you’re using an empty string (“”), which is different from a null object.

1 Like

Thank you very much, I changed Python script, It’s work!!!