BarRecord.NumReqd
Set/Get the NumReqd property. This is the number of
bars required for this bar record
Syntax
numReqd =
barrecord.NumReqd
barrecord.NumReqd = numReqd
Parameters
None
Returns
Long Integer. Returns the current value of the NumReqd
property
Example
This example accesses the NumReqd property and displays it
current value
Dim numReqd as
Integer
numReqd = barrecord.NumReqd
MsgBox "Num Reqd = " + numReqd
|