Important note
Applies to a design table sheet. Returns the smallest of a column values. Returns 0 if the
column specified is out of range.
Syntax
sheet.MinInColumn(columnIndex : Index): Real
where columnIndex is the column number.
Example
MinimumValue=MinInColumn(3)
Message("Minimum value is # (0 is expected)", MinimumValue)
/* you can use also */
Message("Minimum value is # (0 is expected)", MinInColumn(3))