Click or drag to resize
SoMFieldInsertSpace Method

Inserts space for num values at index start .

Namespace: OIV.Inventor.Fields
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public void InsertSpace(
	int start,
	int num
)

Parameters

start
Type: SystemInt32
num
Type: SystemInt32
Remarks

Index start through start + num -1 will be moved up to make room. For example, to make room for 7 new values at the beginning of the field call insertSpace(0, 7) . If field's values are stored in an user data array and if the number of values to insert is not zero, a new array is allocated and the user's one is no more used.

See Also