The setting for selecting the version bind rule in effect; this rule partly determines the child component document version bound with the parent component for component relationship types of DYNAMIC_CR and DYNAMIC_LABEL_CR. For all other component relationship types the value of this property is null. (For information on document binding specifics, see the ComponentRelationshipType property.) The VersionBindType enumeration has constants defined for the bind type settings.

Valid settings are:

  • LATEST_VERSION: All document versions, major and minor, are considered candidates for binding.
  • LATEST_MAJOR_VERSION: Only the major document versions are considered candidates for binding.

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

Syntax

Visual Basic (Declaration)
Property VersionBindType As Nullable(Of VersionBindType)
C#
Nullable<VersionBindType> VersionBindType { get; set; }
C++
property Nullable<VersionBindType> VersionBindType abstract  {
    Nullable<VersionBindType> get();
    void set(Nullable<VersionBindTypevalue);
}
J#
/** property */
public Nullable<VersionBindType> get_VersionBindType();

/** property */
public void set_VersionBindType(Nullable<VersionBindTypevalue);
JScript
public function get VersionBindType() : Nullable<VersionBindType>

public function set VersionBindType(value : Nullable<VersionBindType>);

Remarks

See Also