ARCed.Scintilla.AutoComplete.RegisterImages C# (CSharp) Method

RegisterImages() public method

Registers a list of images to be displayed in the AutoComplete window.
Indecis are assigned sequentially starting at 0
public RegisterImages ( IList images, Color transparentColor ) : void
images IList List of images in the Bitmap _srcTexture format
transparentColor System.Drawing.Color Color to mask the _srcTexture as transparent
return void
        public void RegisterImages(IList<Bitmap> images, Color transparentColor)
        {
            for (int i = 0; i < images.Count; i++)
                this.RegisterImage(i, images[i], transparentColor);
        }

Same methods

AutoComplete::RegisterImages ( IList images ) : void
AutoComplete::RegisterImages ( IList xpmImages ) : void
AutoComplete::RegisterImages ( ImageList images ) : void
AutoComplete::RegisterImages ( ImageList images, Color transparentColor ) : void