Keysight Pathwave 89600 VSA .NET API
Theme Property
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > Display Class : Theme Property


Glossary Item Box

Gets or sets the color theme to be applied to all windows.

Syntax

Visual Basic (Declaration) 
Public MustOverride Property Theme As String
C# 
public abstract string Theme {get; set;}
C++/CLI 
public:
abstract property String^ Theme {
   String^ get();
   void set (    String^ value);
}

Remarks

The supplied value can currently be any of the following:
  • AeroNormalColor
  • Classic
  • HighContrast
  • LunaHomestead
  • LunaMetallic
  • LunaNormalColor
  • Office2007Black
  • Office2007Blue
  • Office2007Silver
  • Office2010Black
  • Office2010Blue
  • Office2010Silver
  • RoyaleNormalColor
At any time, the list of valid values can be obtained using the IPropertyInfo interface as follows: IPropertyInfo propInf = app.Display as IPropertyInfo; string[] validThemes = propInf.ValidValues<string>("Theme");

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

See Also