Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Advanced / SizeF.cs / 1305376 / SizeF.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing { using System.Diagnostics; using System; using System.IO; using Microsoft.Win32; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Globalization; /** * Represents a dimension in 2D coordinate space */ ////// /// [Serializable] [System.Runtime.InteropServices.ComVisible(true)] [TypeConverter(typeof(SizeFConverter))] [SuppressMessage("Microsoft.Usage", "CA2225:OperatorOverloadsHaveNamedAlternates")] public struct SizeF { ////// Represents the size of a rectangular region /// with an ordered pair of width and height. /// ////// /// Initializes a new instance of the public static readonly SizeF Empty = new SizeF(); private float width; private float height; /** * Create a new SizeF object from another size object */ ///class. /// /// /// Initializes a new instance of the public SizeF(SizeF size) { width = size.width; height = size.height; } /** * Create a new SizeF object from a point */ ///class /// from the specified existing . /// /// /// public SizeF(PointF pt) { width = pt.X; height = pt.Y; } /** * Create a new SizeF object of the specified dimension */ ////// Initializes a new instance of the ///class from /// the specified . /// /// /// public SizeF(float width, float height) { this.width = width; this.height = height; } ////// Initializes a new instance of the ///class from /// the specified dimensions. /// /// /// public static SizeF operator +(SizeF sz1, SizeF sz2) { return Add(sz1, sz2); } ////// Performs vector addition of two ///objects. /// /// /// public static SizeF operator -(SizeF sz1, SizeF sz2) { return Subtract(sz1, sz2); } ////// Contracts a ///by another /// . /// /// /// Tests whether two public static bool operator ==(SizeF sz1, SizeF sz2) { return sz1.Width == sz2.Width && sz1.Height == sz2.Height; } ///objects /// are identical. /// /// /// public static bool operator !=(SizeF sz1, SizeF sz2) { return !(sz1 == sz2); } ////// Tests whether two ///objects are different. /// /// /// public static explicit operator PointF(SizeF size) { return new PointF(size.Width, size.Height); } ////// Converts the specified ///to a /// . /// /// /// [Browsable(false)] public bool IsEmpty { [System.Runtime.TargetedPatchingOptOutAttribute("Performance critical to inline across NGen image boundaries")] get { return width == 0 && height == 0; } } /** * Horizontal dimension */ ////// Tests whether this ///has zero /// width and height. /// /// /// public float Width { get { return width; } set { width = value; } } /** * Vertical dimension */ ////// Represents the horizontal component of this /// ///. /// /// /// public float Height { get { return height; } set { height = value; } } ////// Represents the vertical component of this /// ///. /// /// public static SizeF Add(SizeF sz1, SizeF sz2) { return new SizeF(sz1.Width + sz2.Width, sz1.Height + sz2.Height); } ////// Performs vector addition of two ///objects. /// /// /// public static SizeF Subtract(SizeF sz1, SizeF sz2) { return new SizeF(sz1.Width - sz2.Width, sz1.Height - sz2.Height); } ////// Contracts a ///by another /// . /// /// /// public override bool Equals(object obj) { if (!(obj is SizeF)) return false; SizeF comp = (SizeF)obj; return(comp.Width == this.Width) && (comp.Height == this.Height) && (comp.GetType().Equals(GetType())); } ////// Tests to see whether the specified object is a /// ////// with the same dimensions as this . /// /// /// public override int GetHashCode() { return base.GetHashCode(); } ///[To be supplied.] ////// /// public PointF ToPointF() { return (PointF) this; } ///[To be supplied.] ////// /// public Size ToSize() { return Size.Truncate(this); } ///[To be supplied.] ////// /// public override string ToString() { return "{Width=" + width.ToString(CultureInfo.CurrentCulture) + ", Height=" + height.ToString(CultureInfo.CurrentCulture) + "}"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Creates a human-readable string that represents this /// ///. /// // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing { using System.Diagnostics; using System; using System.IO; using Microsoft.Win32; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Globalization; /** * Represents a dimension in 2D coordinate space */ ////// /// [Serializable] [System.Runtime.InteropServices.ComVisible(true)] [TypeConverter(typeof(SizeFConverter))] [SuppressMessage("Microsoft.Usage", "CA2225:OperatorOverloadsHaveNamedAlternates")] public struct SizeF { ////// Represents the size of a rectangular region /// with an ordered pair of width and height. /// ////// /// Initializes a new instance of the public static readonly SizeF Empty = new SizeF(); private float width; private float height; /** * Create a new SizeF object from another size object */ ///class. /// /// /// Initializes a new instance of the public SizeF(SizeF size) { width = size.width; height = size.height; } /** * Create a new SizeF object from a point */ ///class /// from the specified existing . /// /// /// public SizeF(PointF pt) { width = pt.X; height = pt.Y; } /** * Create a new SizeF object of the specified dimension */ ////// Initializes a new instance of the ///class from /// the specified . /// /// /// public SizeF(float width, float height) { this.width = width; this.height = height; } ////// Initializes a new instance of the ///class from /// the specified dimensions. /// /// /// public static SizeF operator +(SizeF sz1, SizeF sz2) { return Add(sz1, sz2); } ////// Performs vector addition of two ///objects. /// /// /// public static SizeF operator -(SizeF sz1, SizeF sz2) { return Subtract(sz1, sz2); } ////// Contracts a ///by another /// . /// /// /// Tests whether two public static bool operator ==(SizeF sz1, SizeF sz2) { return sz1.Width == sz2.Width && sz1.Height == sz2.Height; } ///objects /// are identical. /// /// /// public static bool operator !=(SizeF sz1, SizeF sz2) { return !(sz1 == sz2); } ////// Tests whether two ///objects are different. /// /// /// public static explicit operator PointF(SizeF size) { return new PointF(size.Width, size.Height); } ////// Converts the specified ///to a /// . /// /// /// [Browsable(false)] public bool IsEmpty { [System.Runtime.TargetedPatchingOptOutAttribute("Performance critical to inline across NGen image boundaries")] get { return width == 0 && height == 0; } } /** * Horizontal dimension */ ////// Tests whether this ///has zero /// width and height. /// /// /// public float Width { get { return width; } set { width = value; } } /** * Vertical dimension */ ////// Represents the horizontal component of this /// ///. /// /// /// public float Height { get { return height; } set { height = value; } } ////// Represents the vertical component of this /// ///. /// /// public static SizeF Add(SizeF sz1, SizeF sz2) { return new SizeF(sz1.Width + sz2.Width, sz1.Height + sz2.Height); } ////// Performs vector addition of two ///objects. /// /// /// public static SizeF Subtract(SizeF sz1, SizeF sz2) { return new SizeF(sz1.Width - sz2.Width, sz1.Height - sz2.Height); } ////// Contracts a ///by another /// . /// /// /// public override bool Equals(object obj) { if (!(obj is SizeF)) return false; SizeF comp = (SizeF)obj; return(comp.Width == this.Width) && (comp.Height == this.Height) && (comp.GetType().Equals(GetType())); } ////// Tests to see whether the specified object is a /// ////// with the same dimensions as this . /// /// /// public override int GetHashCode() { return base.GetHashCode(); } ///[To be supplied.] ////// /// public PointF ToPointF() { return (PointF) this; } ///[To be supplied.] ////// /// public Size ToSize() { return Size.Truncate(this); } ///[To be supplied.] ////// /// public override string ToString() { return "{Width=" + width.ToString(CultureInfo.CurrentCulture) + ", Height=" + height.ToString(CultureInfo.CurrentCulture) + "}"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Creates a human-readable string that represents this /// ///. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlSchemaCollection.cs
- ToolStripMenuItem.cs
- ToolboxBitmapAttribute.cs
- InitializationEventAttribute.cs
- TextBoxBaseDesigner.cs
- DbBuffer.cs
- ObjectReaderCompiler.cs
- InputScope.cs
- securitycriticaldata.cs
- RuleConditionDialog.Designer.cs
- GeometryModel3D.cs
- XmlUTF8TextWriter.cs
- Cloud.cs
- DataGridViewColumnConverter.cs
- StringComparer.cs
- WebRequestModuleElementCollection.cs
- _NtlmClient.cs
- WindowCollection.cs
- ParserStreamGeometryContext.cs
- HyperLink.cs
- XslNumber.cs
- HttpRequestWrapper.cs
- FrameworkContentElement.cs
- XamlFigureLengthSerializer.cs
- DataGridTextBoxColumn.cs
- GridSplitterAutomationPeer.cs
- UInt16Converter.cs
- XmlDocumentSchema.cs
- TimeManager.cs
- xmlsaver.cs
- Color.cs
- TTSEngineTypes.cs
- DbConnectionFactory.cs
- AVElementHelper.cs
- UnsafeNativeMethods.cs
- ReflectEventDescriptor.cs
- messageonlyhwndwrapper.cs
- HitTestWithGeometryDrawingContextWalker.cs
- XmlEnumAttribute.cs
- WinFormsSpinner.cs
- SqlCacheDependencyDatabase.cs
- DeclaredTypeValidator.cs
- LiteralControl.cs
- PropertyPath.cs
- ScrollBar.cs
- CustomGrammar.cs
- UIElementIsland.cs
- HttpChannelBindingToken.cs
- BinaryExpressionHelper.cs
- PositiveTimeSpanValidator.cs
- RadialGradientBrush.cs
- RegistryExceptionHelper.cs
- QueueProcessor.cs
- SocketException.cs
- DefinitionUpdate.cs
- FocusWithinProperty.cs
- TypeUtils.cs
- WSHttpSecurityElement.cs
- DesignerCalendarAdapter.cs
- OperatorExpressions.cs
- InternalPolicyElement.cs
- DataGridPagerStyle.cs
- UriExt.cs
- MetafileEditor.cs
- LinqDataSourceHelper.cs
- TextSchema.cs
- PassportAuthenticationModule.cs
- EventsTab.cs
- WebPartDescriptionCollection.cs
- ViewStateModeByIdAttribute.cs
- DataTableMapping.cs
- StructuralType.cs
- RoleService.cs
- HtmlInputButton.cs
- PropertyTab.cs
- EntitySetBase.cs
- XmlUtilWriter.cs
- PersonalizationStateQuery.cs
- ConnectionStringSettings.cs
- ModelPerspective.cs
- SelectionRange.cs
- BuildProviderAppliesToAttribute.cs
- InitializeCorrelation.cs
- EntitySqlQueryState.cs
- KeyMatchBuilder.cs
- ExpressionEditorAttribute.cs
- Pkcs9Attribute.cs
- FormViewUpdatedEventArgs.cs
- CroppedBitmap.cs
- BitmapCodecInfoInternal.cs
- SchemaImporterExtensionsSection.cs
- PngBitmapEncoder.cs
- PauseStoryboard.cs
- OrderingInfo.cs
- SystemKeyConverter.cs
- ValidatedControlConverter.cs
- DynamicObject.cs
- CssTextWriter.cs
- XmlElement.cs
- SmtpSpecifiedPickupDirectoryElement.cs