ScreenUPG Assembly > ScreenUPG Namespace > ScreenUPG Class : findFieldEx Method |
'Declaration
Public Function findFieldEx( _ ByVal inBeginIndex As Integer, _ ByVal inMode As Integer, _ ByVal inType As Integer, _ ByVal inWrap As Integer, _ ByVal outRow As MutableInt, _ ByVal outColumn As MutableInt, _ ByVal outLength As MutableInt, _ ByVal outAttribute As MutableInt _ ) As Boolean
'Usage
Dim instance As ScreenUPG Dim inBeginIndex As Integer Dim inMode As Integer Dim inType As Integer Dim inWrap As Integer Dim outRow As MutableInt Dim outColumn As MutableInt Dim outLength As MutableInt Dim outAttribute As MutableInt Dim value As Boolean value = instance.findFieldEx(inBeginIndex, inMode, inType, inWrap, outRow, outColumn, outLength, outAttribute)
public bool findFieldEx( int inBeginIndex, int inMode, int inType, int inWrap, MutableInt outRow, MutableInt outColumn, MutableInt outLength, MutableInt outAttribute )
public: bool findFieldEx( int inBeginIndex, int inMode, int inType, int inWrap, MutableInt^ outRow, MutableInt^ outColumn, MutableInt^ outLength, MutableInt^ outAttribute )
int inBeginIndex = 1; int inMode = ScreenUPG.FINDFIELD_NEXT; int inType = ScreenUPG.FIELDTYPE_PROTECTED; int inWrap = ScreenUPG.WRAP_ON; MutableInt outRow = new MutableInt(0); MutableInt outColumn = new MutableInt(0); MutableInt outLength = new MutableInt(0); MutableInt outAttribute = new MutableInt(0); // Find the next protected field in the presentation space boolean found = screen.findFieldEx(inBeginIndex, inMode, inType, inWrap, outRow, outColumn, outLength, outAttribute);
Dim inBeginIndex As Integer
Dim inStartCol As Integer
Dim inMode As Integer
Dim inType As Integer
Dim inWrap As Integer
Dim outRow As New Mutable.MutableInt
Dim outColumn As New Mutable.MutableInt
Dim outLength As New Mutable.MutableInt
Dim outAttribute As New Mutable.MutableInt
Dim found As Boolean
inBeginIndex = 1
inMode = 1
inType = 1
inWrap = 1
'Find the next protected field in the presentation space
found = screen.findFieldEx(inBeginIndex, inMode, inType, inWrap, outRow, outCol, outLength, outAttribute)
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2