Specifies whether this class or property is enabled for full text indexing (content-based retrieval).

For classes, the following conditions apply:

  • The value of this property must be set to true if any property on this class is going to be enabled for CBR.
  • A value of true also enables full text indexing of any content associated with the class. (There is no content property to enable CBR.)

For properties, this property can be enabled only on Document, Annotation, CustomObject, and Folder objects.


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

Syntax

Visual Basic (Declaration)
Property IsCBREnabled As Nullable(Of Boolean)
C#
Nullable<bool> IsCBREnabled { get; set; }
C++
property Nullable<bool> IsCBREnabled abstract  {
    Nullable<bool> get();
    void set(Nullable<boolvalue);
}
J#
/** property */
public Nullable<bool> get_IsCBREnabled();

/** property */
public void set_IsCBREnabled(Nullable<boolvalue);
JScript
public function get IsCBREnabled() : Nullable<bool>

public function set IsCBREnabled(value : Nullable<bool>);

Remarks

See Also