Altova Authentic 2024 Browser Edition

AuthenticRange.GotoNext

Home Prev Top Next

See also

 

Method: GotoNext (eKind as SPYAuthenticElementKind) as AuthenticRange

 

Description

Sets the range to the beginning of the next element of type eKind. The method returns the modified range object.

 

Errors


2001

The authentic range object, or its related view object is no longer valid.


2003

Target lies after end of document.


2005

Invalid element kind specified.

Invalid address for the return parameter was specified.

 

Examples

' --------------------------------------------

'                VBScript

' Scan through the whole document word-by-word

' --------------------------------------------

Dim objAuthenticView

Set objAuthenticView = objPlugin.AuthenticView

 

Dim objRange

Set objRange = objAuthenticView.DocumentBegin

Dim bEndOfDocument

bEndOfDocument = False

 

On Error Resume Next

While Not bEndOfDocument

 objRange.GotoNext(spyAuthenticWord).Select

 If ((Err.number - vbObjecterror) = 2003) Then

         bEndOfDocument = True

         Err.Clear

 ElseIf (Err.number <> 0) Then

         Err.Raise ' forward error

 End If

Wend

 

© 2017-2023 Altova GmbH