PdcMaterial.Units: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 14: Line 14:
2 - pdcUnitKilo<br />
2 - pdcUnitKilo<br />
3 - pdcUnitLiter<br />
3 - pdcUnitLiter<br />
3 - pdcUnitArea<br />
4 - pdcUnitArea<br />
4 - pdcUnitVolume
5 - pdcUnitVolume


== Code example ==
== Code example ==

Latest revision as of 08:21, 6 July 2015

Declaration

Units as pdcUnitKind

Description

Returns the unit

Notes

This property returns the unit property of the current material. The stated table shows the possible unit return types.

Parameters - Description
0 - pdcUnitPiece
1 - pdcUnitMeter
2 - pdcUnitKilo
3 - pdcUnitLiter
4 - pdcUnitArea
5 - pdcUnitVolume

Code example

This code example returns the unit for the first material.

dim objCalc

dim objMat

  set objCalc = pdc.ActiveCalculation
  set objMat = objCalc.MaterialList(0)
  msgbox objMat.Unit

Availability