Hello
can anyone please explain to me why this rule has infinitive refresh problem?
Relations\Rules\Izvodi\Promijeni_status_aktivacije is an action:
inputs:
can anyone please explain to me why this rule has infinitive refresh problem?
Code:
Let OpenBodyFeature1 (OpenBodyFeature)
Let OpenBodyFeature2 (OpenBodyFeature)
Let OpenBodyFeature3 (OpenBodyFeature)
Let OpenBodyFeature4 (OpenBodyFeature)
set OpenBodyFeature1 = `Geometrija izvoda\NN_strana\NN_gore_unutarnji`
set OpenBodyFeature2 = `Geometrija izvoda\NN_strana\NN_gore_vanjski`
set OpenBodyFeature3 = `Geometrija izvoda\NN_strana\NN_dolje_unutarnji`
set OpenBodyFeature4 = `Geometrija izvoda\NN_strana\NN_dolje_vanjski`
if Dvije_sekcije == "DA"
{
Relations\Rules\Izvodi\Promijeni_status_aktivacije ->Run(OpenBodyFeature1 ,true)
Relations\Rules\Izvodi\Promijeni_status_aktivacije ->Run(OpenBodyFeature2 ,true)
Relations\Rules\Izvodi\Promijeni_status_aktivacije ->Run(OpenBodyFeature3 ,true)
Relations\Rules\Izvodi\Promijeni_status_aktivacije ->Run(OpenBodyFeature4 ,true)
}
else
{
Relations\Rules\Izvodi\Promijeni_status_aktivacije ->Run(OpenBodyFeature1 ,false)
Relations\Rules\Izvodi\Promijeni_status_aktivacije ->Run(OpenBodyFeature2 ,false)
Relations\Rules\Izvodi\Promijeni_status_aktivacije ->Run(OpenBodyFeature3 ,false)
Relations\Rules\Izvodi\Promijeni_status_aktivacije ->Run(OpenBodyFeature4 ,false)
}
Relations\Rules\Izvodi\Promijeni_status_aktivacije is an action:
inputs:
Code:
geoSet : OpenBodyFeature,visState : Boolean
Code:
let GF_Children (List)
let SK_Children (List)
Let GeometricFeature1 (GeometricFeature)
Let Sketch1 (Sketch)
GF_Children = geoSet ->Query("GeometricFeature","")
SK_Children = geoSet ->Query("Sketch","")
for GeometricFeature1 inside GF_Children
{
GeometricFeature1.Activity = visState
}
for Sketch1 inside SK_Children
{
Sketch1.Activity = visState
}