WinStudio
IWSIDOCollection interface
Goes to the previous object in a specified IDO collection and returns a Boolean value indicating whether this navigation was successful.
object.Previous( )
Part |
Description |
object | Required. A reference to a valid IDO collection object. |
A return value of:
This method navigates objects in the collection but does not set the focus of the form to the previous object.
Sub Main() Dim bIsPrevious As String bIsPrevious = ThisForm.PrimaryIDOCollection.Previous().ToString Application.ShowMessage(bIsPrevious) End Sub