Ignore (Property)

Applies To:

Limit object

Description:

In the Query section, enables a Query to ignore limits. Consequently, the Results section is not recalculated. In the CubeQuery section, this property specifies whether a member selector should be ignored or not

Action:

Read-write, Boolean

Example:

This example shows how to temporarily ignore all Data Model limits before processing the query:

var MyQuery = ActiveDocument.Sections["Query" MyDM = MyQuery.DataModel
var DMLimitCount = MyDM.Limits.Count
for (j = 1 ; j <= DMLimitCount ; j++)
    MyDM.Limits[j].Ignore = true
//Assumes you are already connected