<ST_EdGrp> (Range Permision Editing Group)

This simple type specifies the set of possible aliases (or editing groups) which may be used as aliases to determine if the current user shall be allowed to edit a single range defined by a range permission within a document. This mechanism simply provides a set of predefined editing groups which may be associated with user accounts by applications in any desired manner.

example:
<w:permStart w:id="0" w:edGrp="editors"  /><w:permEnd w:id="0" />

The @edGrp attribute value of editors specifies that only user(s) who the current application associates with the editors group shall be allowed to edit the contents between the start and end markers when document protection is being enforced. ]

This simple type's contents are a restriction of the XML Schema string datatype.

The following are possible enumeration values for this type:

Enumeration Value

Description

<administrators> (Administrator Group)

Specifies that users associated with the Administrators group shall be allowed to edit range permissions using this editing group when document protection is enabled.

<contributors> (Contributors Group)

Specifies that users associated with the Contributors group shall be allowed to edit range permissions using this editing group when document protection is enabled.

<current> (Current Group)

Specifies that users associated with the Current group shall be allowed to edit range permissions using this editing group when document protection is enabled.

<editors> (Editors Group)

Specifies that users associated with the Editors group shall be allowed to edit range permissions using this editing group when document protection is enabled.

<everyone> (All Users Have Editing Permissions)

Specifies that all users that open the document shall be allowed to edit range permissions using this editing group when document protection is enabled.

<none> (No Users Have Editing Permissions)

Specifies that none of the users that open the document shall be allowed to edit range permissions using this editing group when document protection is enabled.

<owners> (Owners Group)

Specifies that users associated with the Owners group shall be allowed to edit range permissions using this editing group when document protection is enabled.

Referenced By

<permStart@edGrp>2.13.7.2)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_EdGrp">
	<restriction base="xsd:string">
	<enumeration value="none"/>
	<enumeration value="everyone"/>
	<enumeration value="administrators"/>
	<enumeration value="contributors"/>
	<enumeration value="editors"/>
	<enumeration value="owners"/>
	<enumeration value="current"/>
	</restriction>
</simpleType>