SelectMultiplePhysicalMembers
Selects multiple physical members in the current model.
This function allows you to select several physical members at once by specifying their numbers. The selection can be used for further operations or queries within the model.
Parameters
- PhysicalMemberNosArray: Array of physical member numbers to select. If the array is null or empty, no members will be selected. (Long)
Return values
- Returns nothing. The specified physical members are selected in the current model context.
Example
from openstaad import Geometry
# Instanciar el módulo Geometry
g = Geometry()
# Seleccionar múltiples miembros físicos con los números 1, 2 y 3
g.SelectMultiplePhysicalMembers([1, 2, 3])