Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Advanced / FrameDimension.cs / 1305376 / FrameDimension.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- 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. //------------------------------------------------------------------------------ //to a human-readable string. /// // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- 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.to a human-readable string. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SynchronizationLockException.cs
- InputMethod.cs
- RuntimeHandles.cs
- FormsAuthenticationTicket.cs
- TemplateGroupCollection.cs
- NullableConverter.cs
- IList.cs
- ParallelTimeline.cs
- RegistrationContext.cs
- ActionItem.cs
- CompatibleComparer.cs
- SiteMapProvider.cs
- ButtonRenderer.cs
- TransactionContextValidator.cs
- ConfigurationStrings.cs
- MouseEvent.cs
- OleDbEnumerator.cs
- AppliedDeviceFiltersDialog.cs
- ContainerControl.cs
- LinearQuaternionKeyFrame.cs
- XmlSchemaChoice.cs
- _Events.cs
- BitmapEffectInput.cs
- DataGridColumnCollection.cs
- ViewPort3D.cs
- TiffBitmapDecoder.cs
- StorageInfo.cs
- PropertyChangingEventArgs.cs
- WindowsRichEdit.cs
- HttpConfigurationContext.cs
- InvokeMethodDesigner.xaml.cs
- FlowDocumentPaginator.cs
- LinqDataSourceView.cs
- DataSpaceManager.cs
- ConfigurationElement.cs
- ListViewCancelEventArgs.cs
- GAC.cs
- StickyNote.cs
- ConnectionStringsExpressionBuilder.cs
- NetworkInformationPermission.cs
- XpsThumbnail.cs
- CurrentChangingEventManager.cs
- SqlStream.cs
- SymbolEqualComparer.cs
- ZoneButton.cs
- ResourceKey.cs
- ReadOnlyDataSource.cs
- CollectionViewGroupInternal.cs
- OutputCacheSection.cs
- ConnectionPointGlyph.cs
- Cursors.cs
- MexTcpBindingCollectionElement.cs
- PositiveTimeSpanValidator.cs
- CompilerTypeWithParams.cs
- Margins.cs
- RightsManagementResourceHelper.cs
- ImageField.cs
- TypeUsageBuilder.cs
- SqlXml.cs
- OpCellTreeNode.cs
- PasswordBox.cs
- UIHelper.cs
- HttpConfigurationSystem.cs
- UserNameSecurityTokenProvider.cs
- SecurityKeyIdentifierClause.cs
- WorkflowOperationInvoker.cs
- DataGridViewCellStyle.cs
- SqlFacetAttribute.cs
- SystemIPv6InterfaceProperties.cs
- RequestCache.cs
- SizeChangedInfo.cs
- IgnoreSectionHandler.cs
- ModuleBuilder.cs
- QilFunction.cs
- ErrorItem.cs
- TimeoutTimer.cs
- InkCanvasFeedbackAdorner.cs
- AssociationTypeEmitter.cs
- CacheMemory.cs
- EraserBehavior.cs
- CollectionViewGroupRoot.cs
- ListCollectionView.cs
- ServicePoint.cs
- SQLDouble.cs
- ClientSideQueueItem.cs
- TextOptions.cs
- PathSegmentCollection.cs
- Convert.cs
- NavigationWindow.cs
- SrgsItemList.cs
- StringToken.cs
- PageParser.cs
- XPathParser.cs
- ParameterModifier.cs
- XmlReaderSettings.cs
- RemotingSurrogateSelector.cs
- EndpointAddressElementBase.cs
- WebReferencesBuildProvider.cs
- QueryStringParameter.cs
- ImageMap.cs