IconsGetStockIcon Method

Tries to get a system stock icon. When there is no icon defined for provided id, or Windows version is below Vista, this method returns . On Windows XP use the predefined property members to retrieve system icons.

Definition

Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 7.1.0
C#
public static Icon? GetStockIcon(
	StockIcon id
)

Parameters

id  StockIcon
Id of the icon to retrieve. For future compatibility reasons non-defined StockIcon values are also allowed.

Return Value

Icon
An Icon instance containing a small and large icon when an icon belongs to id, or , when no icon found or Windows version is below Vista, or the method is called in a non-Windows environment.

Remarks

  Note

On non-Windows platforms this method always returns .

See Also