Method SetTermBuffer
SetTermBuffer(Char[], Int32, Int32)
Copies the contents of buffer, starting at offset for length characters, into the termBuffer array.
Declaration
public void SetTermBuffer(char[] buffer, int offset, int length)
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | buffer | the buffer to copy |
System.Int32 | offset | the index in the buffer of the first character to copy |
System.Int32 | length | the number of characters to copy |
SetTermBuffer(String)
Copies the contents of buffer into the termBuffer array.
Declaration
public void SetTermBuffer(String buffer)
Parameters
Type | Name | Description |
---|---|---|
System.String | buffer | the buffer to copy |
SetTermBuffer(String, Int32, Int32)
Copies the contents of buffer, starting at offset and continuing for length characters, into the termBuffer array.
Declaration
public void SetTermBuffer(String buffer, int offset, int length)
Parameters
Type | Name | Description |
---|---|---|
System.String | buffer | the buffer to copy |
System.Int32 | offset | the index in the buffer of the first character to copy |
System.Int32 | length | the number of characters to copy |