Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Advanced / FrameDimension.cs / 1 / FrameDimension.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /*************************************************************************\ * * Copyright (c) 1998-1999, Microsoft Corp. All Rights Reserved. * * Module Name: * * FrameDimension.cs * * Abstract: * * Image format constant types * * Revision History: * * 12/14/1998 [....] * Created it. * \**************************************************************************/ namespace System.Drawing.Imaging { using System; using System.Diagnostics; using System.Drawing; using System.ComponentModel; /** * frame dimension constants (used with Bitmap.FrameDimensionsList) */ ////// /// /// // [TypeConverterAttribute(typeof(FrameDimensionConverter))] public sealed class FrameDimension { // Frame dimension GUIDs, from sdkinc\imgguids.h private static FrameDimension time = new FrameDimension(new Guid("{6aedbd6d-3fb5-418a-83a6-7f45229dc872}")); private static FrameDimension resolution = new FrameDimension(new Guid("{84236f7b-3bd3-428f-8dab-4ea1439ca315}")); private static FrameDimension page = new FrameDimension(new Guid("{7462dc86-6180-4c7e-8e3f-ee7333a7a483}")); private Guid guid; ////// /// Initializes a new instance of the public FrameDimension(Guid guid) { this.guid = guid; } ///class with the specified GUID. /// /// /// Specifies a global unique identifier (GUID) /// that represents this public Guid Guid { get { return guid;} } ///. /// /// /// The time dimension. /// public static FrameDimension Time { get { return time;} } ////// /// The resolution dimension. /// public static FrameDimension Resolution { get { return resolution;} } ////// /// The page dimension. /// public static FrameDimension Page { get { return page;} } ////// /// Returns a value indicating whether the /// specified object is an public override bool Equals(object o) { FrameDimension format = o as FrameDimension; if (format == null) return false; return this.guid == format.guid; } ///equivalent to this . /// /// /// public override int GetHashCode() { return guid.GetHashCode(); } ///[To be supplied.] ////// /// Converts this public override string ToString() { if (this == time) return "Time"; if (this == resolution) return "Resolution"; if (this == page) return "Page"; return "[FrameDimension: " + guid + "]"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.to a human-readable string. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SerializationFieldInfo.cs
- PropertyBuilder.cs
- SystemWebCachingSectionGroup.cs
- AttributeQuery.cs
- DeviceSpecificDesigner.cs
- ResourcePart.cs
- Viewport3DVisual.cs
- TableCellCollection.cs
- MatrixUtil.cs
- SplineKeyFrames.cs
- UIElementCollection.cs
- SplashScreen.cs
- ICspAsymmetricAlgorithm.cs
- NumericExpr.cs
- XmlToDatasetMap.cs
- OutputCacheSettingsSection.cs
- GrammarBuilder.cs
- Paragraph.cs
- MethodImplAttribute.cs
- EmulateRecognizeCompletedEventArgs.cs
- WaitingCursor.cs
- PointValueSerializer.cs
- WebRequestModuleElementCollection.cs
- GridLength.cs
- XmlSerializationWriter.cs
- RegexMatchCollection.cs
- SqlConnectionString.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- MetadataHelper.cs
- WorkflowDefinitionDispenser.cs
- WS2007HttpBindingCollectionElement.cs
- WorkingDirectoryEditor.cs
- HuffModule.cs
- TableRowGroup.cs
- CompilerParameters.cs
- entitydatasourceentitysetnameconverter.cs
- SecurityElement.cs
- CFStream.cs
- DateTimeSerializationSection.cs
- XPathDocumentIterator.cs
- DeclarationUpdate.cs
- FontInfo.cs
- FastPropertyAccessor.cs
- Span.cs
- URLIdentityPermission.cs
- DirectoryObjectSecurity.cs
- WebRequest.cs
- Fx.cs
- CacheAxisQuery.cs
- _LazyAsyncResult.cs
- cache.cs
- WindowCollection.cs
- TdsParameterSetter.cs
- FileVersionInfo.cs
- UnionQueryOperator.cs
- MethodBody.cs
- RubberbandSelector.cs
- TrackingMemoryStreamFactory.cs
- XmlJsonReader.cs
- CapabilitiesAssignment.cs
- ReflectionHelper.cs
- ImageSourceValueSerializer.cs
- ListSourceHelper.cs
- DataRecord.cs
- BitmapFrameDecode.cs
- ZipIOFileItemStream.cs
- panel.cs
- Error.cs
- AuthenticatedStream.cs
- ToolStripGripRenderEventArgs.cs
- WorkflowTransactionOptions.cs
- Operator.cs
- SignedInfo.cs
- SqlDataSourceSelectingEventArgs.cs
- ExceptionHandlers.cs
- DeclaredTypeValidatorAttribute.cs
- AnimatedTypeHelpers.cs
- LogArchiveSnapshot.cs
- CopyOfAction.cs
- RsaKeyIdentifierClause.cs
- DynamicObjectAccessor.cs
- OdbcRowUpdatingEvent.cs
- shaperfactoryquerycacheentry.cs
- MimeObjectFactory.cs
- BuildManager.cs
- RangeValueProviderWrapper.cs
- Menu.cs
- ApplicationInterop.cs
- DataGridViewCellParsingEventArgs.cs
- Animatable.cs
- XsltLibrary.cs
- NamedPermissionSet.cs
- AvTraceDetails.cs
- NumberSubstitution.cs
- HotSpot.cs
- InputReportEventArgs.cs
- FreezableDefaultValueFactory.cs
- XmlDataLoader.cs
- SoapAttributeAttribute.cs
- SR.cs