ScrExportSettingsFileSetOptions

Selects Settings File (*.sef) options used with ScrExportSettingsFile.
UI Command:   Export > Settings File. Use the check boxes to select export options.
Syntax:   obj.ScrExportSettingsFileSetOptions(<optionArray>)
Parameters:  

ARRAY optionArray of BOOLs (1 = enable export; 0 = disable export)

INDEX:

  • 0 – Plane Extents
  • 1 – Solder Balls and Bumps
  • 2 – Bondwires
  • 3 – Net Selections
  • 4 – Differential Nets and Extended Differential Nets
  • 5 – Extended Nets
  • 6 – Padstacks (includes Padshapes)
Return Value:  

BOOL:

  • 0 – Failure
  • 1 – Success
VB Example:  

Dim expOptions (7)

  expOptions(0) = 1

  expOptions(1) = 0

  expOptions(2) = 1

  expOptions(3) = 0

  expOptions(4) = 0

  expOptions(5) = 1

  expOptions(6) = 0

obj.ScrExportSettingsFileSetOptions expOptions

IPY Example:  

oDoc.ScrExportSettingsFileSetOptions([1,0,1,0,0,1,0])