Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Constants, prefix the name with the module name and a period.
DI_ (Constants)
.
C# Constants:
/// <summary>
/// Draws the icon or cursor using the mask.
/// </summary>
public const int DI_MASK = 0x0001;
/// <summary>
/// Draws the icon or cursor using the image.
/// </summary>
public const int DI_IMAGE = 0x0002;
/// <summary>
/// Combination of DI_IMAGE and DI_MASK.
/// </summary>
public const int DI_NORMAL = 0x0003;
/// <summary>
/// Draws the icon or cursor using the system default image rather than the user-specified image.
/// For more information, see About Cursors. Windows NT4.0 and later: This flag is ignored.
/// </summary>
public const int DI_COMPAT = 0x0004;
/// <summary>
/// Draws the icon or cursor using the width and height specified by the system metric values for cursors or icons,
/// if the cxWidth and cyWidth parameters are set to zero. If this flag is not specified and cxWidth and cyWidth are set to zero,
/// the function uses the actual resource size.
/// </summary>
public const int DI_DEFAULTSIZE = 0x0008;
/// <summary>
/// Windows XP: Draws the icon as an unmirrored icon. By default, the icon is drawn as a mirrored icon if hdc is mirrored.
/// </summary>
public const int DI_NOMIRROR = 0x0010;
VB Constants:
TODO
Notes:
None.
The DrawIconEx API
3/16/2007 8:23:46 AM - consultants@russte.com-69.76.127.174
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!