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)

ToggleSyntax

Visual Basic (Declaration)
Property IsHierarchical As Nullable(Of Boolean)
C#
Nullable<bool> IsHierarchical { get; set; }
Visual C++
property Nullable<bool> IsHierarchical {
	Nullable<bool> get ();
	void set (Nullable<bool> value);
}
JavaScript
function get_isHierarchical();
function set_isHierarchical(value);

ToggleRemarks

ToggleSee Also