Click or drag to resize

BindableItemIOControl Property

Gets or sets a property to control how individual updates to this item are presented externally.

Namespace:  Demo3D.Visuals
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 15.0.2.11458
Syntax
C#
public IOControl IOControl { get; set; }

Property Value

Type: IOControl
Remarks

By default, external IO is compressed such that changing the value of an item from (for example) 1 to 2 to 3, may result in only the value 3 being written externally (to a PLC or other server). Setting IOControl.PreserveAllUpdates forces each update (1 to 2, and 2 to 3) to be written externally.

Setting IOControl.FastScanRate tells the caches to expect the value to change at high frequency.

See Also