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

RegisterImage() private method

Registers an _srcTexture with index to be displayed in the AutoComplete window.
private RegisterImage ( int type, Bitmap image, Color transparentColor ) : void
type int Index of the _srcTexture to register to
image System.Drawing.Bitmap Image to display in the XPM _srcTexture format
transparentColor System.Drawing.Color Color to mask the _srcTexture as transparent
return void
        private void RegisterImage(int type, Bitmap image, Color transparentColor)
        {
            NativeScintilla.RegisterImage(type, XpmConverter.ConvertToXPM(image, Utilities.ColorToHtml(transparentColor)));
        }

Same methods

AutoComplete::RegisterImage ( int type, Bitmap image ) : void
AutoComplete::RegisterImage ( int type, string xpmImage ) : void