Struct IconReference
A structure that represents a reference to an icon resource.
Inherited Members
Namespace: Telerik.WinControls.Taskbar
Assembly: Telerik.WinControls.UI.dll
Syntax
public struct IconReference
Constructors
IconReference(String)
Initializes a new instance of the IconReference class.
Declaration
public IconReference(string referencePath)
Parameters
System.String
referencePath
The reference to a specific icon within a DLL, EXE(executable file) or icon file. The reference path consists of concatenated ModuleName and ReferencePath, separated by a comma. |
IconReference(String, Int32)
Initializes a new instance of the IconReference class.
Declaration
public IconReference(string moduleName, int resourceId)
Parameters
System.String
moduleName
The name of DLL, EXE(executable file) or icon file. |
System.Int32
resourceId
The zero-based index of the icon. |
Properties
ModuleName
Gets or sets the name of DLL, EXE(executable file) or icon file.
Declaration
public string ModuleName { get; set; }
Property Value
System.String
|
ReferencePath
Gets or sets the reference to a specific icon within a DLL, EXE(executable file) or icon file. The reference path consists of concatenated ModuleName and ReferencePath, separated by a comma.
Declaration
public string ReferencePath { get; set; }
Property Value
System.String
|
ResourceId
The zero-based index of the icon.
Declaration
public int ResourceId { get; set; }
Property Value
System.Int32
|