BExplorer.Shell.ImageList.DrawOverlay C# (CSharp) Method

DrawOverlay() public method

Draws the icon
public DrawOverlay ( IntPtr hdc, int overlayIndex, Point location, int newSize = -1 ) : void
hdc System.IntPtr A handle to the destination device context.
overlayIndex int The index of the overlay
location Point The x and y coordinates that specifies where the image is drawn.
newSize int The new size of the image (Double Check)
return void
		public void DrawOverlay(IntPtr hdc, int overlayIndex, Point location, int newSize = -1) {
			DrawInternal(hdc, GetIndexOfOverlay(overlayIndex), 0, ImageListDrawOptions.Normal | ImageListDrawOptions.Transparent, ImageListDrawStates.Normal, 0, location, newSize);
		}