Specifies whether the marking set is hierarchical or not.

A non-hierarchical marking set contains one or more markings, each independent of all others. A hierarchical marking set has an order of precedence to its markings determined by their order in the set. Its markings are arranged in a simple, single branch hierarchy. This order of precendence is followed when evaluating access rights. Each marking has a superior marking (which must be in the same set), except for the top marking (its superior is null). A marking in a hierarchical marking set explicitly grants access rights to a set of security principals. It also implicitly grants the same rights for all markings that are inferior to it in the hierarchy.


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

Syntax

Visual Basic (Declaration)
Property IsHierarchical As Nullable(Of Boolean)
C#
Nullable<bool> IsHierarchical { get; set; }
C++
property Nullable<bool> IsHierarchical abstract  {
    Nullable<bool> get();
    void set(Nullable<boolvalue);
}
J#
/** property */
public Nullable<bool> get_IsHierarchical();

/** property */
public void set_IsHierarchical(Nullable<boolvalue);
JScript
public function get IsHierarchical() : Nullable<bool>

public function set IsHierarchical(value : Nullable<bool>);

Remarks

See Also