| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // System.Drawing.Imaging.PropertyItem.cs
- //
- // Authors:
- // Everaldo Canuto ([email protected])
- // Andreas Nahr ([email protected])
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Drawing.Imaging {
- public sealed class PropertyItem
- {
- private int id;
- private int len;
- private short type;
- private byte[] value;
- //constructor
- internal PropertyItem()
- {
- //Nothing to be done here
- }
- // properties
- public int Id {
- get { return id; }
- set { id = value; }
- }
- public int Len {
- get { return len; }
- set { len = value; }
- }
- public short Type {
- get { return type; }
- set { type = value; }
- }
- public byte[] Value {
- get { return this.value; }
- set { this.value = value; }
- }
- }
- }
|