ARCed.Scintilla.XpmConverter.ConvertToXPM C# (CSharp) Method

ConvertToXPM() public static method

Cicles an _srcTexture list object to convert contained images into xpm at the same time we add converted images into an arraylist that lets us to retrieve images later. Uses the DefaultTransparentColor.
public static ConvertToXPM ( ImageList imageList ) : List
imageList System.Windows.Forms.ImageList The _srcTexture list to transform.
return List
        public static List<string> ConvertToXPM(ImageList imageList)
        {
            return ConvertToXPM(imageList, DefaultTransparentColor);
        }

Same methods

XpmConverter::ConvertToXPM ( ImageList imageList, string transparentColor ) : List
XpmConverter::ConvertToXPM ( Bitmap bmp ) : string
XpmConverter::ConvertToXPM ( Bitmap bmp, string transparentColor ) : string
XpmConverter