Report.designCount Method

Retrieves the number of designs in a given report.

Syntax

public int designCount()

Run On

Called

Return Value

Type: int
The number of designs.

Examples

static void testDesign(args a) 
{ 
    report r = new report(); 
  
    print "A newly created report has ", r.DesignCount(), " designs"; 
    pause; 
}

See Also

Report Class

Report.designNumber Method