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
- X509WindowsSecurityToken.cs
- FlowDocumentPageViewerAutomationPeer.cs
- MarkupExtensionSerializer.cs
- WinEventTracker.cs
- ConnectionStringsSection.cs
- SessionStateUtil.cs
- XPathMessageFilterElementCollection.cs
- XmlQueryContext.cs
- COMException.cs
- LinkConverter.cs
- BitmapEffectGroup.cs
- ExpressionNormalizer.cs
- FtpWebResponse.cs
- PropertyTabAttribute.cs
- XXXOnTypeBuilderInstantiation.cs
- SerializerDescriptor.cs
- RadioButtonFlatAdapter.cs
- HttpProtocolImporter.cs
- ViewKeyConstraint.cs
- ImpersonateTokenRef.cs
- DbReferenceCollection.cs
- ObjectStateFormatter.cs
- DynamicActivity.cs
- FormViewDeleteEventArgs.cs
- SqlConnectionPoolGroupProviderInfo.cs
- LinkClickEvent.cs
- HitTestParameters3D.cs
- ArcSegment.cs
- _SpnDictionary.cs
- StoreItemCollection.Loader.cs
- ToolStripItemCollection.cs
- RemoteDebugger.cs
- graph.cs
- GlobalProxySelection.cs
- WebPartChrome.cs
- DataControlFieldHeaderCell.cs
- CachedTypeface.cs
- ReadWriteObjectLock.cs
- ProfilePropertyNameValidator.cs
- ValueExpressions.cs
- DataTableTypeConverter.cs
- PaintValueEventArgs.cs
- BezierSegment.cs
- PasswordBoxAutomationPeer.cs
- AdornerHitTestResult.cs
- DisplayNameAttribute.cs
- InteropAutomationProvider.cs
- formatter.cs
- DataGridViewUtilities.cs
- FaultDesigner.cs
- PreviewPageInfo.cs
- WpfGeneratedKnownTypes.cs
- PropertyGridView.cs
- HandlerBase.cs
- DataViewManager.cs
- PixelShader.cs
- SqlConnectionString.cs
- HttpListenerContext.cs
- EndOfStreamException.cs
- ExceptionHelpers.cs
- CompilationUtil.cs
- ContextMenu.cs
- DesignBindingPicker.cs
- PointLightBase.cs
- BaseTemplateCodeDomTreeGenerator.cs
- TimerEventSubscription.cs
- ClientOptions.cs
- PageThemeParser.cs
- ProviderBase.cs
- rsa.cs
- HtmlAnchor.cs
- ImageList.cs
- DataSourceView.cs
- SparseMemoryStream.cs
- IProvider.cs
- WebPart.cs
- PhysicalOps.cs
- AdRotator.cs
- PageBuildProvider.cs
- DataBinding.cs
- CssTextWriter.cs
- Roles.cs
- FocusChangedEventArgs.cs
- FlowDocumentReaderAutomationPeer.cs
- BasicSecurityProfileVersion.cs
- DesignerActionService.cs
- CodeAttributeArgument.cs
- SqlFlattener.cs
- ScriptServiceAttribute.cs
- ProxyHelper.cs
- DefaultHttpHandler.cs
- precedingsibling.cs
- NullRuntimeConfig.cs
- PersonalizationDictionary.cs
- RadioButtonFlatAdapter.cs
- StorageInfo.cs
- HttpWriter.cs
- RemotingConfiguration.cs
- Relationship.cs
- RelationshipConverter.cs