| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Drawing.Imaging.PropertyItem.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Everaldo Canuto
- // eMail: [email protected]
- // Dennis Hayes ([email protected])
- //
- using System;
- namespace System.Drawing.Imaging {
- public sealed class PropertyItem {
- // properties
- //[MonoTODO]
- public int Id {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- //[MonoTODO]
- public int Len {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- //[MonoTODO]
- public short Type {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- //[MonoTODO]
- public byte[] Value {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- }
- }
|