Hello,
I am trying to add a custom boolean property to each tag in my module on Ignition 7.9. I am using a SimpleTagProvider, and I have not been able to find a way to add a custom boolean property to each tag.
In my module’s 8.0 version, its as simple as:
BasicBoundPropertySet tagProperty = new BasicBoundPropertySet(new PropertyValue(new BasicProperty<Boolean>("CustomProperty", boolean.class), "false"));
provider.configureTag(tagPath, readtimeProperty);
but in Ignition 7.9, I cannot find any similar functionality.
If possible, how do I add custom properties to tags in an Ignition 7.9 module?