How To Set Zone Settings Zone Settings can be updated via the Scripting API. HyperSizer Method Get and sets the various Component inputs for panel Components. from hs_enums import * def SetZoneSettings(component): """Set various panel or beam properties.""" # Panel component.SetPanelProperty(PanelComponentProperty.pcpBucklingXSpan, 27.0) component.Save() # Beam component.SetBeamProperty(BeamComponentProperty.bcpBucklingXSpan, 27.0) component.Save() HyperX Method Zone Settings are available on the Zone. import hyperx as hx def SetZoneProperties(project: hx.Project): """Set various panel or beam properties.""" # Panel panelName = "My Panel" panel: hx.Panel = project.Panels.Get(panelName) panel.XSpan = 1 panel.YSpan = 2 panel.AddedWeight = 3 panel.MechanicalLimit = 0.67 panel.MechanicalUltimate = 1.15 # etc. # Beam beamName = "My Beam" beam: hx.Beam = project.Beams.Get(beamName) beam.XSpan = 1 beam.AddedWeight = 2 beam.MechanicalLimit = 0.67 beam.MechanicalUltimate = 1.15 # etc.