Applies To:
Limit object
Description:
Enables you to include null values as part of a limit.
Action:
Read-write, Boolean
Example:
This example shows how to set all the limits in the Data Model to support null values:
var MyQuery = ActiveDocument.Sections[“Query”] var MyDM = MyQuery.DataModel var DMLimitCount = MyDM.Limits.Count for (j = 1 ; j <= DMLimitCount ; j++) MyDM.Limits[j].IncludeNulls = true //Assumes you are already connected MyQuery.Process()