Contains a bitmask specifying the required access to an object that is intended as a target (referenced value) for a given object-valued property. This property may be one or more values of the AccessRight enumerations.

An IPropertyDefinitionObject defines object-valued properties as part of class definitions. Its TargetAccessRequired property specifies the access level that the caller must be granted by the target object in order to assign it as the value of the object-valued property being defined. To obtain the value of the TargetAccessRequired property, call the property accessor methods on IPropertyDefinitionObject.

On IPropertyDescriptionObject, TargetAccessRequired is read only.

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

ToggleSyntax

Visual Basic (Declaration)
Property TargetAccessRequired As Nullable(Of Integer)
C#
Nullable<int> TargetAccessRequired { get; set; }
Visual C++
property Nullable<int> TargetAccessRequired {
	Nullable<int> get ();
	void set (Nullable<int> value);
}
JavaScript
function get_targetAccessRequired();
function set_targetAccessRequired(value);

ToggleRemarks

ToggleSee Also