InfoConnect for Unisys
Load Method (Theme)
Example 


The path to the new theme.
Loads a new theme into the current session document.
Syntax
'Declaration
 
Public Sub Load( _
   ByVal pathName As String _
) 
'Usage
 
Dim instance As Theme
Dim pathName As String
 
instance.Load(pathName)
public void Load( 
   string pathName
)

Parameters

pathName
The path to the new theme.
Example
class Program
{
   private Theme theme;
            
   public Theme ApplicationTheme
   {
      set{theme = value;}
   }
            
   public void LoadTheme()
   {
      if(theme != null)
      {
        theme.Load("C:\\..");//path of the new theme.
      }
   }
}
See Also