Versions Compared

Key

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

...

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

Syntax

C#
public StatusCode FieldSearch(
	ref int row,
	ref int column,
	string searchText
)

...

Visual Basic (Declaration)
Public Function FieldSearch ( _
	ByRef row As Integer, _
	ByRef column As Integer, _
	searchText As String _
) As StatusCode


Visual C++
public:
virtual StatusCode FieldSearch(
	int% row, 
	int% column, 
	String^ searchText
) sealed

...

JavaScript
function FieldSearch(row, column, searchText);


Parameters

row
Type: System..::.Int32 %Screen
Screen row.

column
Type: System..::.Int32 %Screen
Screen column.

searchText
Type: System..::.StringText String
Text to search for.

Return Value

The StatusCode indicating the result of the operation.

...

Status codeDescription
OkThe search string was found.
NotConnectedYour application is not currently connected to a host session.
ParameterErrorString was length zero or greater than the session presentation space size.
InvalidPositionThe specified presentation space position was invalid.
SystemErrorThe method failed due to a system error.
NoSuchFieldThe search string was not found, or the session presentation space is unformatted.


Implements

IQWS3270..::.FieldSearch(Int32%, Int32%, String)

See Also


QWS3270 Class
JollyGiant.Emulation Namespace

...