Report.designCount Method [AX 2012]

Retrieves the number of designs in a given report.

public int designCount()

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; 
}

Community Additions

ADD
Show: