Barlist.TrafficBarrierQuantity
Set/Get the traffic barrier reinforcing steel quantity
Syntax
tbq =
barlist.TrafficBarrierQuantity
barlist.TrafficBarrierQuantity = tbq
Parameters
None
Returns
Double. The current value of the traffic barrier reinforcing
steel quantity
Example
This example gets the current value of the traffic barrier
reinforcing steel quantity, adds 100 kg to it, and then assigns the value back to the
barlist object.
Dim tqb as
Double
tbq = barlist.TrafficBarrierQuantity
tbq = tbq + 100
barlist.TrafficBarrierQuantity = tbq
|