Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
CCarreiras
in reply to: rbertoletti

Ok, so it's simple,

 

If you want to edit all the members, you have to activate the Edit factory Mode Scope and have both pencils blue.

 

Manually:

CCarreiras_2-1731670234604.png

 

A code to pass from Member scope to Factory Scope is and vice versa is:

 

  • To change the active edit scope to edit member scope, depending on the needs, use:
ThisDoc.Document.ComponentDefinition.ModelStates.MemberEditScope = MemberEditScopeEnum.kEditActiveMember
or:
oDoc.ComponentDefinition.ModelStates.MemberEditScope = MemberEditScopeEnum.kEditActiveMember
  • To change the active edit scope to edit factory scope, depending on the needs, use:
ThisDoc.Document.ComponentDefinition.ModelStates.MemberEditScope = MemberEditScopeEnum.kEditAllMembers
or:
oDoc.ComponentDefinition.ModelStates.MemberEditScope = MemberEditScopeEnum.kEditAllMembers

 

 

 

 

CCarreiras

EESignature