Description
Call this method before calling any other method or property of the RDKApplication object. If the copy of the RDK is unauthorized, this method will cause the "authorization dialog" to appear. It also initializes the RDKApplication and its child objects.
Syntax
object.Init(Optional useInterfaceMode as Boolean=True)
Arguments
useInterfaceMode (Optional Boolean) – Set to TRUE (the default) if the RDKApplication object can interact with the RDK Results viewing application. If you want to prevent simulation results from being viewed in the RDK Results viewing application, set to FALSE.
Return Value
None.
Example
Public Sub StartUpApplication()
RDKApp.Init False
End Sub