InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / Theme Class / Save Method
Example


In This Topic
    Save Method (Theme)
    In This Topic
    Saves changes to the current theme.
    Syntax
    'Declaration
     
    
    Public Sub Save() 
    'Usage
     
    
    Dim instance As Theme
     
    instance.Save()
    public void Save()
    Exceptions
    ExceptionDescription
    An I/O (input/output) error occurred while trying to save the theme.
    The caller does not have the required permission to save the theme.
    Example
    class Program
    {
       private Theme theme;
                
       public Theme ApplicationTheme
       {
          set{theme = value;}
       }
                
       public void LoadTheme()
       {
          if(theme != null)
          {
            theme.Save();
          }
       }
    }
    See Also