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 ( ImageList images, Color transparentColor ) : void
images System.Windows.Forms.ImageList List of images contained in an ImageList
transparentColor System.Drawing.Color Color to mask the _srcTexture as transparent
return void
        public void RegisterImages(ImageList images, Color transparentColor)
        {
            RegisterImages(XpmConverter.ConvertToXPM(images, Utilities.ColorToHtml(transparentColor)));
        }

Same methods

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