Sets whether the recursion level that the property filter uses when retrieving a dependent object is the same as that of the independent object to which it belongs (True) or one level deeper (False). The value set is the global value for this PropertyFilter object. If the filter element of a property has a value for levelDependents, the server uses the filter element's value instead of this global value. If neither the global value nor the filter element value is specified, the default is False.

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

ToggleSyntax

Visual Basic (Declaration)
Public Sub SetLevelDependents ( _
	levelDependents As Nullable(Of Boolean) _
)
C#
public void SetLevelDependents(
	Nullable<bool> levelDependents
)
Visual C++
public:
void SetLevelDependents(
	Nullable<bool> levelDependents
)
JavaScript
function setLevelDependents(levelDependents);

Parameters

levelDependents
Type: System..::.Nullable<(Of <(Boolean>)>)
A Boolean value of True if the recursion level for a dependent object is the same as that of the independent object to which it belongs; False if one level deeper.

ToggleSee Also