| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- // created on 21.02.2002 at 17:06
- //
- // FrameDimension.cs
- //
- // Author: Christian Meyer
- // eMail: [email protected]
- // Dennis Hayes ([email protected])
- // Sanjay Gupta <[email protected])
- //
- namespace System.Drawing.Imaging {
- using System;
- public sealed class FrameDimension {
- internal Guid guid;
- // constructor
- public FrameDimension (Guid guid)
- {
- this.guid = guid;
- }
- //properties
- public Guid Guid {
- get {
- return guid;
- }
- }
-
- public static FrameDimension Page {
- get {
- return new FrameDimension ( new Guid ( "7462dc86-6180-4c7e-8e3f-ee7333a7a483" ) );
- }
- }
-
- public static FrameDimension Resolution {
- get {
- return new FrameDimension ( new Guid ( "84236f7b-3bd3-428f-8dab-4ea1439ca315" ) );
- }
- }
-
- public static FrameDimension Time {
- get {
- return new FrameDimension ( new Guid ( "6aedbd6d-3fb5-418a-83a6-7f45229dc872" ) );
- }
- }
-
- //methods
- public override bool Equals (object o) {
- throw new NotImplementedException ();
- }
-
- public override int GetHashCode () {
- throw new NotImplementedException ();
- }
-
- public override string ToString() {
- throw new NotImplementedException ();
- }
- //destructor
- ~FrameDimension () {}
- }
- }
|