BExplorer.Shell.ImageList.DrawIcon C# (CSharp) Метод

DrawIcon() публичный Метод

Draws the icon
public DrawIcon ( IntPtr hdc, int index, Point location, int newSize = -1, System.Boolean hidden = false ) : void
hdc System.IntPtr A handle to the destination device context.
index int The zero-based index of the image to be drawn.
location Point The x and y coordinates that specifies where the image is drawn.
newSize int The new size of the image (Double Check)
hidden System.Boolean
Результат void
		public void DrawIcon(IntPtr hdc, int index, Point location, int newSize = -1, Boolean hidden = false) {
			DrawInternal(hdc, index, 0, hidden ? ImageListDrawOptions.Selected | ImageListDrawOptions.Transparent : ImageListDrawOptions.Image | ImageListDrawOptions.Transparent, ImageListDrawStates.Alpha, hidden ? 192 : 255, location, newSize);
		}