DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Property: IsReadOnly for CalculationChannel <Data>

Property: IsReadOnly for CalculationChannel <Data>

Specifies whether a calculation channel is read-only in the script interface for internal data.

Object.IsReadOnly
ObjectCalculationChannel <Data>
Object with this property
Object.IsReadOnlyBoolean value with read access

The following example generates a calculation channel from a formula with the unit “m/s” and displays whether this calculation channel is read-only:

VBScriptPython

 

Dim oMyCalculationChn
Set oMyCalculationChn = Data.Root.ChannelGroups(1).Channels.AddCalculationChannel("Result", "=Speed * 2", "m/s", 1)
Call MsgBox(oMyCalculationChn.IsReadOnly)
In This Section
Was this information helpful?