Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Copies a string into a specified position on the presentation space.

Namespace:  JollyGiant.Emulation
Assembly:  JGSComdotNet (in JGSComdotNet.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax


C#
StatusCode SetString(
	int row,
	int column,
	string text
)



Visual Basic (Declaration)
Function SetString ( _
	row As Integer, _
	column As Integer, _
	text As String _
) As StatusCode



Visual C++
StatusCode SetString(
	int row, 
	int column, 
	String^ text
)



JavaScript
function SetString(row, column, text);



Parameters

row Type: System..::.Int32Screen Int32
Screen row string will be copied to.

column Type: System..::.Int32Screen Int32
Screen column string will be copied to.

text Type: System..::.StringString String
String to copy to the screen.

Return Value

The StatusCode indicating the result of the operation.

This can be one of the following values:


Status codeDescription
OkThe string was successfully copied.
WHLLNOTCONNECTEDYour application is not currently connected to a host session (see Connect(Object)).
WHLLPARAMETERERRORcharsToCopy has a value of zero (invalid).
WHLLINHIBITEDThe host session presentation space is protected or inhibited, or the string contains illegal data (such as a field attribute byte).
WHLLTRUNCATEDThe data string was truncated during the copy (partial copy).
WHLLPOSITIONERRORThe presentation space position is invalid.
WHLLSYSERRORThe method failed due to a system error.


See Also


IScreen Interface
JollyGiant.Emulation Namespace
ISession..::.Connect(Object)

Send comments on this topic to Jolly Giant Software

...