Click or drag to resize

LayoutFieldSetSequence Method

Updates the the unformatted character sequence of the index occurence of this field in message.

Namespace:  OBCOM.NetSwitchLib.Layouts
Assembly:  OBCOM.NetSwitchLib (in OBCOM.NetSwitchLib.dll) Version: 1.48.7760.35650 (1.48.7760.35650)
Syntax
public void SetSequence(
	LayoutMessage message,
	int index,
	string data
)

Parameters

message
Type: OBCOM.NetSwitchLib.LayoutsLayoutMessage
The message that will be updated.
index
Type: SystemInt32
The occurence index of the field.
data
Type: SystemString
The new data of this field.
Exceptions
ExceptionCondition
IndexOutOfRangeException If index is out of bounds.
ArgumentException If strict and data is too long.
Remarks

The character sequence starts at the offset position returned by the GetOffset method, and it's length is given by the Length property.

If the value of data is too short, it is extended with space characters. If the value of data is too long, it is truncated. If data is null the sequence is filled with NO-DATA (0x1A).

See Also