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 AccessLevel or 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.


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

Syntax

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

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

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

Remarks

See Also