Hi,
I have created a custom property that is displayed on a standard page in edit mode. Is there any way to check if the same custom property is displayed on a dynamic properties page in edit mode?
public override void CreateEditControls() /* - Used when rendering the property in edit mode. */
{
.....
.....
if (????)
{
..... /* Something is just created when custom property is displayed on dynamic properties page */
}
else
{
..... /* Something is just created when custom property is displayed on ordinary pages in edit mode */
}
}
Best Regards
Anders
public override void CreateEditControls() /* - Used when rendering the property in edit mode. */ { ..... ..... if (????) { ..... /* Something is just created when custom property is displayed on dynamic properties page */ } else { ..... /* Something is just created when custom property is displayed on ordinary pages in edit mode */ } }
Best Regards Anders