XCom.Palette.Palette C# (CSharp) Method

Palette() public method

public Palette ( string name ) : System
name string
return System
		public Palette(string name)
		{
			Bitmap b = new Bitmap(1,1,PixelFormat.Format8bppIndexed);
			cp = b.Palette;
			b.Dispose();
			this.name=name;
		}

Same methods

Palette::Palette ( Stream s ) : System