ESRI.ArcGIS.E2API Feedback via the User Forum
SkinInfo Class
See Also  Members   Example 
ESRI.ArcGIS.E2API Namespace : SkinInfo Class


The SkinInfo class can be used to retrieve information about the way that the ArcGIS Explorer application user interface is currently skinned.

Syntax

Visual Basic (Declaration) 
Public NotInheritable Class SkinInfo 
Visual Basic (Usage)Copy Code
Dim instance As SkinInfo
C# 
public sealed class SkinInfo 

Example

An example of using SkinInfo to change the ForeColor of a Label to that of the HotStartColor used in the application.
C#Copy Code
Color clr = _taskUI.E2.SkinInfo.GetSkinColor(esriE2SkinColor.HotStartColor); 
label1.ForeColor = clr;
Visual BasicCopy Code
Dim clr As Color = _taskUI.E2.SkinInfo.GetSkinColor(esriE2SkinColor.HotStartColor);
label1.ForeColor = clr

Inheritance Hierarchy

System.Object
   ESRI.ArcGIS.E2API.SkinInfo

Platforms

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Version Information

This class was added to the E2API at version 1.0.0.348.

See Also