Change a Property Object with expression Binding in a template

Hi, I'm making a Template and I want to change an object property 'FillPaint'
if CustomProperty1(From Template) is 'True' or CustomProperty2(From Template) is 'True' or 'CustomProperty3(From Template) then
Change the Property FillPaint to a specific color...
I think the best way is 'Expression Binding' wich allows me involve any number of component's properties and/or tags
I'm trying to use the 'If Function' but I don't know how to assign the color to the property 'FillPaint'...
I can do that with Expression Binding?
Is there a better option?

Create internal template properties with the desired end colors in them.
Then use a single expression to choose the "right" output color from each custom property.

1 Like

Thanks, I never had worked with internal properties, I created one Internal Property and three template parameters, so I did an expression binding for the internal property, wich if one of the template parameters is true, then Internal Property will be true, later the control of the parameter 'FillPaint' from an object was done by the Internal Property. Thanks!