DIAdem Help

Content Type
Programming Language
Current manual

Object: CellChannelFormatter

Object: CellChannelFormatter

The CellChannelFormatter object contains information about how the values of a channel are represented in the workbook.

The following example checks each channel whether this channel has a CellBlock and creates the channel property DataType:

Dim oMyChn
For Each oMyChn in oBlock.Channels
  If (oMyChn.Formatter.IsKindOf(eCellBlock)) Then
    Call oMyChn.Properties.Add("DataType", oMyChn.Formatter.DataType)
  End If
Next

Properties

Block | DataType

Methods

IsKindOf

Was this information helpful?