*attributeupdateintarraymark

Updates an attribute of type int array on a set of entities.

Syntax

*attributeupdateintarraymark entity type mark identifier solver status behavior data length

Type

HyperMesh Tcl Modify Command

Description

Updates an attribute of type int array on a set of entities.

Inputs

entity type
The entity type that owns the attribute.
mark
The number of the mark.
identifier
The identifier of the attribute.
solver
The solver number of the attribute.
status
The status of the attribute.
behavior
The behavior of the attribute.
data
The int array.
length
The int array length.

Examples

Update an attribute of type int array to [1, 2, 3, and 4] on the materials with ID's 7 and 8.

*createmark(materials,1) 7 8
*createintarray(4) 1 2 3 4
*attributeupdateintarraymark(materials,1,615,2,2,0,1,4)