Struct
IconReference

A structure that represents a reference to an icon resource.

Definition

Namespace:Telerik.WinControls.Taskbar

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public struct IconReference

Inherited Members ValueType.Equals(object)ValueType.GetHashCode()ValueType.ToString()

Constructors

IconReference(string)

Initializes a new instance of the IconReference class.

Declaration

cs-api-definition
public IconReference(string referencePath)

Parameters

referencePath

string

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, int)

Initializes a new instance of the IconReference class.

Declaration

cs-api-definition
public IconReference(string moduleName, int resourceId)

Parameters

moduleName

string

The name of DLL, EXE(executable file) or icon file.

resourceId

int

The zero-based index of the icon.

Properties

ModuleName

Gets or sets the name of DLL, EXE(executable file) or icon file.

Declaration

cs-api-definition
public string ModuleName { get; set; }

Property Value

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

cs-api-definition
public string ReferencePath { get; set; }

Property Value

string

ResourceId

The zero-based index of the icon.

Declaration

cs-api-definition
public int ResourceId { readonly get; set; }

Property Value

int