You are viewing limited content. For full access, please sign in.

Question

Question

Change Field Group Name via SDK

SDK
asked on April 28, 2020

How can we via the SDK change the field Group Name ?

 

0 0

Answer

SELECTED ANSWER
replied on April 29, 2020

With the RepositoryAccess library, you can change the field group name with TemplateInfo.SetFieldGroupNameById:

TemplateInfo templateInfo = Template.GetInfo("MyTemplateName", session);

int fieldgroupId = templateInfo.GetFieldGroupId("MyFieldName");
templateInfo.SetFieldGroupNameById(fieldgroupId, "NewFieldGroupName");
templateInfo.Save()

 

3 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.