Back to product page
- Introduction
- Overview
- License agreement
- Configuration file creation
- Getting Started
- Objects
- Enumerations
- wodAppUpdate
- Methods
- Properties
- AutoRestart
- Blocking
- CmdAfter
- CmdBefore
- CmdLine
- DebugFile
- DialogNoteText
- DialogNoteURL
- DialogText
- Files
- ForceRestart
- GlobalTerminate
- Login
- Messages
- Notification
- Password
- PrevExist
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- ReplaceRule
- RequireAdmin
- ServiceIsRunning
- Signature
- State
- StateText
- Timeout
- UpdaterName
- UpdaterTimeout
- URL
- URLHandler
- UserIsAdmin
- Version
- Visible
- WinVersion
- Events
- Notifications
- UpdFile
- UpdFiles
- UpdMessage
- UpdMessages
- UpdProcess
- UpdProcesses
- How to get support?
- Technical information
- Fast notifications interface
- Error list
NewVersionInt property
Provides indexed access to remote new version information.
Type
A Long valueSyntax
- Basic
object.NewVersionInt(Index)
The NewVersionInt(object,Port,value) syntax has these parts:
The NewVersionInt(object,Port,value) syntax has these parts:
object | An expression evaluating to an object of type UpdFile. |
Port | Required. An Integer value. Index of subversion number in version information. |
value | A Long value. |
Remarks
This property holds part of the NewVersion version information. Using this property you don't have to parse NewVersion property manually since NewVersionInt does it for you. For instance, you can do this:Debug.Print Upd1.Files(0).NewVersion
1.2.4.8
Debug.Print Upd1.Files(0).NewVersionInt(0)
1
Debug.Print Upd1.Files(0).NewVersionInt(1)
2
etc..