This documentation is archived and is not being maintained.
Report.designCount Method [AX 2012]
Retrieves the number of designs in a given report.
Run On
Called
Return Value
Type:
int
The number of designs.
static void testDesign(args a)
{
report r = new report();
print "A newly created report has ", r.DesignCount(), " designs";
pause;
}