Share

Autodesk.Windows.TaskDialogIcon Enumeration

Description

This enum is a representation of standard icons to be used in main and footer areas of the task dialog

Visual Basic

Public Enum TaskDialogIcon
  Error = &Hfffe
  Information = &Hfffd
  None = 0
  Shield = &Hfffc
  Warning = &Hffff
End Enum

C#

public enum TaskDialogIcon {
  Error = 0xfffe,
  Information = 0xfffd,
  None = 0,
  Shield = 0xfffc,
  Warning = 0xffff
}

Members

Members Description
Error = 0xfffe Error icon.
Information = 0xfffd Information icon.
None = 0 No icon.
Shield = 0xfffc Shield icon.
Warning = 0xffff Warning icon.

Was this information helpful?