Specifies the access rights that are required to change the value of a given property on the object instances on which the property occurs. To specify access rights, use the AccessRight class in the com.filenet.api.constants package. You can:
  • set the value of the ModificationAccessRequired property when creating a given property
  • modify its value after creating the given property
  • modify its value on the ClassDefinition object when creating a document class.

Namespace:  FileNet.Api.Admin
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Property ModificationAccessRequired As Nullable(Of Integer)
C#
Nullable<int> ModificationAccessRequired { get; set; }
Visual C++
property Nullable<int> ModificationAccessRequired {
	Nullable<int> get ();
	void set (Nullable<int> value);
}
JavaScript
function get_modificationAccessRequired();
function set_modificationAccessRequired(value);

ToggleRemarks

ToggleSee Also