Type Alias SearchPage

type SearchPage = {
    qCount?: number;
    qGroupItemOptions?: SearchGroupItemOptions[];
    qGroupOptions?: SearchGroupOptions[];
    qMaxNbrFieldMatches?: number;
    qOffset?: number;
}
Index

Properties

qCount?: number

Number of search groups to return (in qSearchGroupArray ).

qGroupItemOptions?: SearchGroupItemOptions[]

Options of the search group items. If this property is not set, all values are returned. This property is to be used with the SearchResults method or the SearchObjects method.

qGroupOptions?: SearchGroupOptions[]

Options of the search groups. If this property is not set, all values are returned. This property is to be used with the SearchResults method or the SearchObjects method.

qMaxNbrFieldMatches?: number

Maximum number of matching values to return per search result. The default value is -1; all values are returned. This property is to be used with the SearchAssociations method.

qOffset?: number

Position from the top, starting from 0. If the offset is set to 0, the first search result to be returned is at position 0.