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, or combinations of access rights and levels, use the AccessRight and AccessLevel classes 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)

Syntax

Visual Basic (Declaration)
Property ModificationAccessRequired As Nullable(Of Integer)
C#
Nullable<int> ModificationAccessRequired { get; set; }
C++
property Nullable<int> ModificationAccessRequired abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_ModificationAccessRequired();

/** property */
public void set_ModificationAccessRequired(Nullable<intvalue);
JScript
public function get ModificationAccessRequired() : Nullable<int>

public function set ModificationAccessRequired(value : Nullable<int>);

Remarks

See Also