The maximum depth to which a permission (ACL) can be inherited. As the ACL gets inherited in a tree of objects, the value is decremented. Example values are as follows:

  • 0 - No inheritance.
  • 1 - Immediate children only.
  • -1 - All children (infinite levels deep).


Namespace: FileNet.Api.Security
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

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

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

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

Remarks

See Also