Barlist.RetainingWallQuantity
Set/Get the retaining wall reinforcing steel quantity
Syntax
rtq =
barlist.RetainingWallQuantity
barlist.RetainingWallQuantity = rtq
Parameters
None
Returns
Double. The current value of the retaining wall reinforcing
steel quantity
Example
This example gets the current value of the retaining wall
reinforcing steel quantity, adds 100 kg to it, and then assigns the value back to the
barlist object.
Dim rtb as
Double
rtq = barlist.RetainingWallQuantity
rtq = rtq + 100
barlist.RetainingWallQuantity = rtq
|