IStepGenerateNetList Method
Generate the net list for this step on layer with this types: MatrixLayerType.Signal || MatrixLayerType.Power_ground || MatrixLayerType.Drill
Namespace: PCBI.AutomationAssembly: PCB-Investigator (in PCB-Investigator.exe) Version: 0
public bool GenerateNetList(
bool AskForOverwriteOldNetNr = false,
string NetNamePrefix = "Net_",
bool IncludeSubSteps = false
)
Public Function GenerateNetList (
Optional AskForOverwriteOldNetNr As Boolean = false,
Optional NetNamePrefix As String = "Net_",
Optional IncludeSubSteps As Boolean = false
) As Boolean
public:
bool GenerateNetList(
bool AskForOverwriteOldNetNr = false,
String^ NetNamePrefix = L"Net_",
bool IncludeSubSteps = false
)
member GenerateNetList :
?AskForOverwriteOldNetNr : bool *
?NetNamePrefix : string *
?IncludeSubSteps : bool
(* Defaults:
let _AskForOverwriteOldNetNr = defaultArg AskForOverwriteOldNetNr false
let _NetNamePrefix = defaultArg NetNamePrefix "Net_"
let _IncludeSubSteps = defaultArg IncludeSubSteps false
*)
-> bool
- AskForOverwriteOldNetNr Boolean (Optional)
- If there is a net list, the method will ask to overriede.
- NetNamePrefix String (Optional)
- You can change the prefix for new nets, followed by there new number.
- IncludeSubSteps Boolean (Optional)
- Create the netlist for this step only or with all sub steps (otherwise it may be necessary to call the same method directly for the child steps).
Boolean