ARCed.Scintilla.AutoComplete.RegisterImages C# (CSharp) Méthode

RegisterImages() public méthode

Registers a list of images to be displayed in the AutoComplete window.
Indecis are assigned sequentially starting at 0
public RegisterImages ( IList images ) : void
images IList List of images in the Bitmap _srcTexture format
Résultat void
        public void RegisterImages(IList<Bitmap> images)
        {
            for (int i = 0; i < images.Count; i++)
                RegisterImage(i, images[i]);
        }

Same methods

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