FullName (Property)

Applies To:

Limit object

Description:

Returns or sets the value of limits full name. The full name may include the topic. (Query and Data Model Limits only)

Action:

Read-write, String

Example:

This example prints out the full names of all the limits in a query section named SalesQuery:

var MyQuery = ActiveDocument.Sections["SalesQuery"]
var LimitCount = MyQuery.Limits.Count
for (j =1 ; j <= LimitCount ; j++)
    Console.Writeln("Limit fullname is " + MyQuery.Limits[j].FullName)