Versions Compared

Key

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

...

Gets the starting position of the field field (of any type) at the specified screen position.

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

Syntax

C#
public StatusCode FieldPosition(
	ref int row,
	ref int column
)


Visual Basic (Declaration)
Public Function FieldPosition ( _
	ByRef row As Integer, _
	ByRef column As Integer _
) As StatusCode


Visual C++
public:
virtual StatusCode FieldPosition(
	int% row, 
	int% column
) sealed


JavaScript
function FieldPosition(row, column);


Parameters

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

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

Return Value

The StatusCode indicating the result of the operation.

This can be one of the following values:

Status codeDescription
OkThe specified field length was found.
NotConnectedYour application is not currently connected to a host session.
ParameterErrorOne or more of the call parameters are invalid.
InvalidPositionThe screen position specified is invalid.
SystemErrorThe method failed due to a system error.
NoSuchFieldThe specified field was not found, or the session presentation space is unformatted.
ZeroLengthFieldThe specified field has a length of zero.


Implements

IQWS3270..::.FieldPosition(Int32%, Int32%)

See Also


QWS3270 Class
JollyGiant.Emulation Namespace

Send comments on this topic to Jolly Giant Software

...