|  | LayoutMessageReplace Method  | 
 
            Replaces  the  characters  in  a  substring of the message data with
            characters in the specified string.  The  substring  begins  at  the
            specified  start and extends to the character at
            index end-1. If needed, the capacity of the  data
            is  extended so the entire substring can be stored. If the string is
            null the substring is filled  with  NO-DATA  (0x1a).  If  the
            string  is  shorter  than  the  substring,  the  rest is filled with
            spaces.
            
 
    Namespace: 
   OBCOM.NetSwitchLib.Layouts
    Assembly:
   OBCOM.NetSwitchLib (in OBCOM.NetSwitchLib.dll) Version: 1.48.7760.35650 (1.48.7760.35650)
 Syntax
Syntaxpublic void Replace(
	int start,
	int end,
	string value
)
Public Sub Replace ( 
	start As Integer,
	end As Integer,
	value As String
)
Parameters
- start
- Type: SystemInt32
 The start index of the substring.
- end
- Type: SystemInt32
 The end index of the substring.
- value
- Type: SystemString
 The value that will replace the substring.
 See Also
See Also