The maximum number of rows that can be returned from the indexing data during a search. If the FULLTEXTROWLIMIT option is specified for a SQL statement, the lesser of this property value and the value specified for FULLTEXTROWLIMIT is used as the maximum number of rows that can be returned.

This limit prevents excessive resource use during a search operation.


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

Syntax

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

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

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

Remarks

See Also