Hi,
I can set a dynamic property value like this:
DynamicProperty myDynProp = DynamicProperty.Load(page.PageLink, propName); myDynProp.LanguageBranch = page.LanguageBranch; myDynProp.PropertyValue.Value = value; myDynProp.Save();
But I also want to simulate that the checkbox, to make all childpages inherit the value, was selected. Is this possible to do?
Use the Override property on the DynamicProperty instance.
Hi,
I can set a dynamic property value like this:
But I also want to simulate that the checkbox, to make all childpages inherit the value, was selected. Is this possible to do?