InputChannels

Syntax

<Path>.InputChannels:table

The attribute InputChannels designates a table containing the definitions of all input channels

Data Type of the Value You Can Assign

You can assign a value of data type table.

Example

MyChart.InputChannels.delete
MyChart.InputChannels.insertList(1,1,table.copy)
MyChart.Inputchannels := MyDataTable.copy({0,0}..{*,*})
print MyChart.InputChannels[1,1]
Note:

When you assign a table to the attribute InputChannels with the assignment operator :=, Plant Simulation deactivates inheritance.

Any other kind of writing access, as shown in the example above, does not deactivate inheritance. This means that one of these accesses changes the table the input channels table shares with its origin.

Example

MyChart.Inputchannels := MyDataTable.copy({0,0}..{*,*})

Related Topic

Data source