DrillDown Method
Description
Drills down to graph data.
Syntax
Visual Basic
Public Function DrillDown( _
   ByVal pAreas As Variant, _
   ByVal mAreas As Variant _
) As List
Parameters
pAreas
The area of the graph to retrieve, based on its data grid view.
mAreas
No longer in use. Argument preserved for backward compatibility. Pass an Empty variant.
Return Type
A list of objects representing the data in the specified cell of the graph. For example, in a defect graph, DrillDown returns a list of Bug objects.
Remarks
pAreas is a two-dimensional variant array representing lists of rectangular areas in data grid. The first array dimension size must be 4.
Such an array can be logically modeled as a table with four columns where each row represents one rectangular area. Each rectangular area is a set of four coordinates: TopLeftColNum, TopLeftRowNum, BottomRightColNum, and BottomRightRowNum.
See Also