DOFArrayType Constructor (DOFType, Int32, Int32)OpenDOF Object Access Library
Construct a variable-length array of the specified element type.

minLength
must be less than or equal to
maxLength
.

Namespace: org.opendof.core.oal.value
Assembly: dof-oal (in dof-oal.dll) Version: 7.0.1.2
Syntax

C#
public Type(
	DOFType subtype,
	int minLength,
	int maxLength
)

Parameters

subtype
Type: org.opendof.core.oalDOFType
The type of each element of the array. Must not be null. If the array cannot be empty (minLength > 0) then the subtype must be defined ({@link DOFType#IsDefined} must return
true
).
minLength
Type: SystemInt32
The minimum length of the array. Must be non-negative.
maxLength
Type: SystemInt32
The maximum length of the array. Must be greater than or equal to
minLength
.
See Also

Reference