// // System.Windows.Forms.FormBorderStyle.cs // // Author: // Dennis Hayes (dennish@raytek.com) // (C) 2002 Ximian, Inc. http://www.ximian.com // using System; using System.Drawing; namespace System.Drawing.Imaging { /// /// Summary description for ImageAttributes. /// public class ImageAttributes { public ImageAttributes() { } //Clears the color keys for all GDI+ objects public void ClearColorKey(){ } //Sets the color keys for all GDI+ objects public void SetColorKey(Color colorLow, Color colorHigh){ } ~ImageAttributes() { } } }