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 xpmImages ) : void
xpmImages IList List of images in the XPM _srcTexture format
return void
        public void RegisterImages(IList<string> xpmImages)
        {
            for (int i = 0; i < xpmImages.Count; i++)
                NativeScintilla.RegisterImage(i, xpmImages[i]);
        }

Same methods

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