DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Property: Description for CalculationGroup

Property: Description for CalculationGroup

Specifies the description of the calculation group.

Object.Description
ObjectCalculationGroup
Object with this property
Object.DescriptionString with read and write access

The following example displays the descriptions of all calculation groups:

VBScriptPython

 

Dim i, oMyCalcTemp
Set oMyCalcTemp = CalculationSet.CalculationGroups
For I = 1 To oMyCalcTemp.Count
  Call MsgBoxDisp(oMyCalcTemp(i).Description)
Next
Was this information helpful?