DIAdem Help

Command: DataBlClpCopy

  • Updated2024-09-12
  • 2 minute(s) read

Display all  Hide all

Command: DataBlClpCopy

Copies a data block from channels into the clipboard.

Call DataBlClpCopy(ChnList, ChnRow, ValNo)

Input Parameters

ChnList Specifies one or more channels.
ChnRow Specifies the row number in a channel.
ValNo Specifies the number of values in a channel.
Note

The DataBlClpCopy command replaces the DataAreaClpCopy command.

The order of the channels you use is not always the same as the displayed order in the Data Portal.

In the clipboard, tabulators separate data blocks that are from different channels.

Examples

Starting from the fourth line, the following example copies from the channels, whose names start with the text Channel, of the first group in the Data Portal and from all channels in the second group 10 values respectively to the clipboard.

VBScriptPython

 

Dim oMyChannelList
Set oMyChannelList = Data.GetChannels("[1]/Channel*")
Call oMyChannelList.Add(Data.Root.ChannelGroups(2))
Call DataBlClpCopy(oMyChannelList, 4, 10)

Related Topics

Command: ChnClpCopy | Command: ChnClpPaste | Command: DataAreaAppend | Command: DataAreaCopy | Command: DataAreaDel | Command: DataAreaInsert0 | Command: DataAreaInsert | Command: DataAreaInsertV | Command: DataBlAppend | Command: DataBlClpPaste | Command: DataBlClpPaste | Command: DataBlCopy | Command: DataBlDel | Command: DataBlInsert | Command: DataBlInsertVal | Command: GroupClpCopy | Command: GroupClpPaste | Command: TextfromClipboard | Command: TextToClipboard