PdcMaterial.UserStandardSize

From External Bemet Wiki
Revision as of 09:35, 22 May 2012 by Mike (talk | contribs) (Created page with "== Declaration == UseStandardSize as Boolean == Description == Returns or changes the property 'usestandardsize' == Notes == This property returns or sets the UseStandardSi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Declaration

UseStandardSize as Boolean

Description

Returns or changes the property 'usestandardsize'

Notes

This property returns or sets the UseStandardSize property of the current material. When set to 'true' or 'false' the scrap we be recalculated.

Code example

This code example sets 'UseStandardSize' to 'True' of the first material.

dim objCalc

dim objMat

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

Availability