Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CommonUI / System / Drawing / Advanced / FrameDimension.cs / 2 / 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
- PasswordRecoveryAutoFormat.cs
- XmlEncodedRawTextWriter.cs
- XmlKeywords.cs
- UserControl.cs
- LiteralLink.cs
- Transactions.cs
- XhtmlConformanceSection.cs
- XamlGridLengthSerializer.cs
- TemplatedEditableDesignerRegion.cs
- LogEntrySerializationException.cs
- CodeExpressionStatement.cs
- ListenerElementsCollection.cs
- HttpFileCollection.cs
- DataControlCommands.cs
- LZCodec.cs
- DataGridViewCellCancelEventArgs.cs
- QilExpression.cs
- InvalidOperationException.cs
- KoreanLunisolarCalendar.cs
- RoleGroupCollection.cs
- MatrixStack.cs
- DispatcherExceptionEventArgs.cs
- ToolboxItemCollection.cs
- ConfigurationLocationCollection.cs
- TreeView.cs
- Style.cs
- TypeDescriptor.cs
- ObjectNotFoundException.cs
- XmlToDatasetMap.cs
- XNodeNavigator.cs
- coordinatorfactory.cs
- PropertyValueChangedEvent.cs
- NativeRightsManagementAPIsStructures.cs
- ComponentEditorForm.cs
- sqlinternaltransaction.cs
- MetadataArtifactLoaderFile.cs
- DbConnectionClosed.cs
- HMACSHA1.cs
- SingleQueryOperator.cs
- Win32Native.cs
- TdsParserHelperClasses.cs
- IndexedString.cs
- DataGridViewButtonColumn.cs
- XmlSchemaException.cs
- HwndHost.cs
- SchemaImporterExtensionElement.cs
- CodeIndexerExpression.cs
- ValueUnavailableException.cs
- SplineKeyFrames.cs
- Win32Exception.cs
- ChannelManager.cs
- StandardToolWindows.cs
- Authorization.cs
- SequentialActivityDesigner.cs
- Oci.cs
- CodeTypeConstructor.cs
- EtwTrackingParticipant.cs
- GenericAuthenticationEventArgs.cs
- KeyValuePair.cs
- ConfigurationSectionGroupCollection.cs
- DataGridState.cs
- AutoScrollExpandMessageFilter.cs
- GlobalEventManager.cs
- TextShapeableCharacters.cs
- PasswordDeriveBytes.cs
- SspiSafeHandles.cs
- WindowsFormsHelpers.cs
- VariableQuery.cs
- IpcManager.cs
- ComProxy.cs
- ServiceThrottlingBehavior.cs
- SamlAuthorizationDecisionStatement.cs
- GridSplitter.cs
- ViewSimplifier.cs
- ToolStripControlHost.cs
- MemberRelationshipService.cs
- CardSpaceException.cs
- ErrorView.xaml.cs
- EdmError.cs
- WindowsImpersonationContext.cs
- MemberInfoSerializationHolder.cs
- ScopeElement.cs
- ReliableChannelListener.cs
- XmlWriterTraceListener.cs
- UnaryNode.cs
- ReferencedAssembly.cs
- StringSource.cs
- mediaeventshelper.cs
- ServiceModelActivationSectionGroup.cs
- ComPlusTypeValidator.cs
- _ConnectionGroup.cs
- PathData.cs
- FixUpCollection.cs
- WebBrowser.cs
- WebPartUtil.cs
- EventLogger.cs
- ReadOnlyCollectionBase.cs
- HwndAppCommandInputProvider.cs
- ButtonRenderer.cs
- FormViewDeletedEventArgs.cs