Hi,
I want to update a state of an element with some value.
I did not find any attribute on the element that holds that can be set.
I tried to use the query:
update t_object set StateFlags = 'SomeStateValue' where object_id = ElementID
and then:
repository.Execute(sql);
element.Update();
This did not update it as well.
Does someone know how can it be updated?
Thanks.