| 123456789101112131415161718192021222324252627282930313233 |
- //
- // System.Windows.Forms.IDataObject.cs
- //
- // Author:
- // William Lamb ([email protected])
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- namespace System.Windows.Forms {
- [ComVisible(true)]
- public interface IDataObject {
- object GetData(string format);
- object GetData(Type format);
- object GetData(string format, bool autoConvert);
-
- bool GetDataPresent(string format);
- bool GetDataPresent(Type format);
- bool GetDataPresent(string format, bool autoConvert);
- string[] GetFormats();
- string[] GetFormats(bool autoConvert);
-
- void SetData(object data);
- void SetData(string format, object data);
- void SetData(Type format, object data);
- void SetData(string format, bool autoConvert, object data);
- }
- }
|