Desktop Functions: Smart Device Functions:
|
Search Results for "LR_" in [All]comctl32
internal const uint CLR_NONE = 0xFFFFFFFF;
internal const uint CLR_DEFAULT = 0xFF000000;
public const uint CLR_NONE = 0xFFFFFFFF;
public const uint CLR_DEFAULT = 0xFF000000;
public static ImageListDrawColor None = new ImageListDrawColor(NativeMethods.CLR_NONE);
public static ImageListDrawColor Default = new ImageListDrawColor(NativeMethods.CLR_DEFAULT);
public const uint CLR_NONE = 0xFFFFFFFF;
public const uint CLR_DEFAULT = 0xFF000000;
public static ImageListDrawColor None = new ImageListDrawColor(NativeMethods.CLR_NONE);
public static ImageListDrawColor Default = new ImageListDrawColor(NativeMethods.CLR_DEFAULT); Enums3: SLR_FLAGS
enum SLR_FLAGS {
/// Do not display a dialog box if the link cannot be resolved. When SLR_NO_UI is set,
SLR_NO_UI = 0x1,
SLR_ANY_MATCH = 0x2,
/// If SLR_UPDATE is set, you do not need to call IPersistFile::IsDirty to determine
SLR_UPDATE = 0x4,
SLR_NOUPDATE = 0x8,
SLR_NOSEARCH = 0x10,
SLR_NOTRACK = 0x20,
/// has changed. Setting SLR_NOLINKINFO disables both types of tracking.</summary>
SLR_NOLINKINFO = 0x40,
SLR_INVOKE_MSI = 0x80 Enum SLR_FLAGS
''' Do not display a dialog box if the link cannot be resolved. When SLR_NO_UI is set,
SLR_NO_UI = &H1
SLR_ANY_MATCH = &H2
''' If SLR_UPDATE is set, you do not need to call IPersistFile::IsDirty to determine
SLR_UPDATE = &H4
SLR_NOUPDATE = &H8
SLR_NOSEARCH = &H10
SLR_NOTRACK = &H20
''' has changed. Setting SLR_NOLINKINFO disables both types of tracking.</summary>
SLR_NOLINKINFO = &H40
SLR_INVOKE_MSI = &H80 Interfaces4: IShellLinkA
void Resolve(IntPtr hwnd, UnsafeNativeMethods.SLR_FLAGS fFlags); 5: IShellLinkW
void Resolve(IntPtr hwnd, UnsafeNativeMethods.SLR_FLAGS fFlags); user326: CopyImage
7: LoadImage
Constants8: LR_
/// The default flag; it does nothing. All it means is "not LR_MONOCHROME".
public const int LR_DEFAULTCOLOR = 0x0000;
public const int LR_MONOCHROME = 0x0001;
/// which case the LR_COPYDELETEORG flag is ignored. If this flag is not specified, a new object is always created.
public const int LR_COPYRETURNORG = 0x0004;
public const int LR_COPYDELETEORG = 0x0008;
/// Specifies the image to load. If the hinst parameter is non-NULL and the fuLoad parameter omits LR_LOADFROMFILE,
/// If the hinst parameter is NULL and the fuLoad parameter omits the LR_LOADFROMFILE value,
/// If the fuLoad parameter includes the LR_LOADFROMFILE value, lpszName is the name of the file that contains the image.
public const int LR_LOADFROMFILE = 0x0010;
/// If fuLoad includes both the LR_LOADTRANSPARENT and LR_LOADMAP3DCOLORS values, LRLOADTRANSPARENT takes precedence.
public const int LR_LOADTRANSPARENT = 0x0020;
public const int LR_DEFAULTSIZE = 0x0040;
public const int LR_VGACOLOR = 0x0080;
public const int LR_LOADMAP3DCOLORS = 0x1000;
public const int LR_CREATEDIBSECTION = 0x2000;
/// or by LoadImage with the LR_SHARED flag.
public const int LR_COPYFROMRESOURCE = 0x4000;
/// Shares the image handle if the image is loaded multiple times. If LR_SHARED is not set, a second call to LoadImage for the
/// Do not use LR_SHARED for images that have non-standard sizes, that may change after loading, or that are loaded from a file.
/// When loading a system icon or cursor, you must use LR_SHARED or the function will fail to load the resource.
public const int LR_SHARED = 0x8000;
''' The default flag; it does nothing. All it means is "not LR_MONOCHROME".
LR_DEFAULTCOLOR = &H0
LR_MONOCHROME = &H1
''' which case the LR_COPYDELETEORG flag is ignored. If this flag is not specified, a new object is always created.
LR_COPYRETURNORG = &H4
LR_COPYDELETEORG = &H8
''' Specifies the image to load. If the hinst parameter is non-NULL and the fuLoad parameter omits LR_LOADFROMFILE,
''' If the hinst parameter is NULL and the fuLoad parameter omits the LR_LOADFROMFILE value,
''' If the fuLoad parameter includes the LR_LOADFROMFILE value, lpszName is the name of the file that contains the image.
LR_LOADFROMFILE = &H10
''' If fuLoad includes both the LR_LOADTRANSPARENT and LR_LOADMAP3DCOLORS values, LRLOADTRANSPARENT takes precedence.
LR_LOADTRANSPARENT = &H20
LR_DEFAULTSIZE = &H40
LR_VGACOLOR = &H80
LR_LOADMAP3DCOLORS = &H1000
LR_CREATEDIBSECTION = &H2000
''' or by LoadImage with the LR_SHARED flag.
LR_COPYFROMRESOURCE = &H4000
''' Shares the image handle if the image is loaded multiple times. If LR_SHARED is not set, a second call to LoadImage for the
''' Do not use LR_SHARED for images that have non-standard sizes, that may change after loading, or that are loaded from a file.
''' When loading a system icon or cursor, you must use LR_SHARED or the function will fail to load the resource.
LR_SHARED = &H8000 |