Click or drag to resize

LayoutFieldSetChar Method

Updates the character value of the index occurence of field in message.

Namespace:  OBCOM.NetClient
Assembly:  OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax
public void SetChar(
	Message message,
	int index,
	char value
)

Parameters

message
Type: OBCOM.NetClientMessage
The message that will be updated.
index
Type: SystemInt32
The occurence index of the field.
value
Type: SystemChar
The new character value of the field.
Exceptions
ExceptionCondition
IndexOutOfRangeException If index is out of bounds.
Remarks
This is a utility method that calls the SetString(Message, Int32, String) method with a string containing just the supplied character value.
See Also