Description
Returns an item in the ChiSq Bins collection. This is the default property of the collection, so you do not actually have to type ".Item".
Syntax
object.Item(binIndex as Integer)
Arguments
binIndex (Required Integer) – the index of the bin.
Return Value
(BDKChiSqBin) – the bin object.
Example
'These two line accomplish the same thing:
Set binObj = ResultObj.ChiSqBins.Item(1)
Set binObj = ResultObj.ChiSqBins(1)