VirtualStepAndRepeatExtensionsGetMatrixListforAllStepAndRepeatChilds Method

Create a list with one matrix foreach placing of one step in the step and repeat (recursion). You get a matrix to transform each element in the IStep->layer to get entries in this panel.

Definition

Namespace: PCBI.Automation
Assembly: PCB-Investigator (in PCB-Investigator.exe) Version: 0
C#
public static Dictionary<IStep, List<MatrixD>> GetMatrixListforAllStepAndRepeatChilds(
	this IStep this,
	IPCBIWindow iPCBIWindow
)

Parameters

this  IStep
The panel including other steps via step and repeat definition.
iPCBIWindow  IPCBIWindow
Parent of the step to check for substeps and find transformation matrices.

Return Value

DictionaryIStep, ListMatrixD
List for substeps for the current panel step to transform each element on the sub step to get locations in the current panel.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IStep. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also