BarRecord.NumEach
Set/Get the NumEach property
Syntax
numEach =
barrecord.NumEach
barrecord.NumEach = numEach
Parameters
None
Returns
Long Integer. Returns the current value of the NumEach
property
Remarks
This property is only applicable if this bar record
represents bends that vary in length. NumEach must be an even multiple of the
NumReqd property.
Example
This example accesses the NumEach property and displays it
current value
Dim numEach as
Integer
numEach = barrecord.NumEach
MsgBox "Num Each = " + numEach
|