Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / Windows / Int32Rect.cs / 1305600 / Int32Rect.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2001, 2002 // // File: Int32Rect.cs //----------------------------------------------------------------------------- using System; using System.Diagnostics; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Text; using System.Collections; using System.Globalization; using MS.Internal; using System.Windows; using System.Windows.Media; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; namespace System.Windows { ////// Int32Rect - The primitive which represents an integer rectangle. /// public partial struct Int32Rect { #region Constructors ////// Constructor which sets the initial values to the values of the parameters. /// public Int32Rect(Int32 x, Int32 y, Int32 width, Int32 height) { _x = x; _y = y; _width = width; _height = height; } #endregion Constructors #region Statics ////// Empty - a static property which provides an Empty Int32Rectangle. /// public static Int32Rect Empty { get { return s_empty; } } #endregion Statics #region Public Properties ////// IsEmpty - this returns true if this Int32Rect is the Empty integer rectangle. /// public bool IsEmpty { get { return (_x == 0) && (_y == 0) && (_width == 0) && (_height == 0); } } #endregion Public Properties #region Public Methods #endregion Private Methods #region Private Fields private readonly static Int32Rect s_empty = new Int32Rect(0,0,0,0); #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextBounds.cs
- TabControlDesigner.cs
- DummyDataSource.cs
- DiffuseMaterial.cs
- EntityDataSourceDesigner.cs
- ConsoleEntryPoint.cs
- RuntimeUtils.cs
- OdbcError.cs
- RepeaterItemEventArgs.cs
- UniqueIdentifierService.cs
- RegexInterpreter.cs
- GenericIdentity.cs
- Win32KeyboardDevice.cs
- DataGridViewImageColumn.cs
- DbConvert.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- XmlCodeExporter.cs
- Debug.cs
- FacetDescriptionElement.cs
- DataControlPagerLinkButton.cs
- _NetRes.cs
- FilterElement.cs
- OciLobLocator.cs
- ZipIORawDataFileBlock.cs
- MeasureItemEvent.cs
- FileAuthorizationModule.cs
- Light.cs
- ScrollEventArgs.cs
- DataRecordInfo.cs
- TextTrailingWordEllipsis.cs
- Rfc2898DeriveBytes.cs
- WinInetCache.cs
- HtmlSelectionListAdapter.cs
- QuaternionRotation3D.cs
- MissingSatelliteAssemblyException.cs
- FixedSOMContainer.cs
- QilInvokeLateBound.cs
- DurableEnlistmentState.cs
- DataGridViewButtonCell.cs
- TypedElement.cs
- CodeSubDirectory.cs
- CleanUpVirtualizedItemEventArgs.cs
- CodeExpressionCollection.cs
- SingleAnimationUsingKeyFrames.cs
- WrappedIUnknown.cs
- EdmValidator.cs
- WebOperationContext.cs
- HandleCollector.cs
- PixelShader.cs
- ButtonPopupAdapter.cs
- cookiecontainer.cs
- ObjectDataSourceMethodEventArgs.cs
- SqlSelectStatement.cs
- XmlEncodedRawTextWriter.cs
- AppLevelCompilationSectionCache.cs
- CommandDevice.cs
- ProvidersHelper.cs
- ColumnTypeConverter.cs
- WorkflowRuntime.cs
- CodeMethodInvokeExpression.cs
- FontSizeConverter.cs
- SignedPkcs7.cs
- RoleGroup.cs
- DataColumn.cs
- StatusBarItem.cs
- HGlobalSafeHandle.cs
- DefaultDialogButtons.cs
- DataGridViewDataErrorEventArgs.cs
- DBPropSet.cs
- X509Certificate2Collection.cs
- TakeOrSkipQueryOperator.cs
- Msmq3PoisonHandler.cs
- RootBuilder.cs
- PermissionSet.cs
- PrimitiveXmlSerializers.cs
- StylusPointCollection.cs
- ScrollEvent.cs
- DataGridViewColumnTypePicker.cs
- WorkflowDurableInstance.cs
- ListenerTraceUtility.cs
- HttpModuleAction.cs
- ColorMap.cs
- SqlExpander.cs
- HttpWriter.cs
- StringDictionaryEditor.cs
- RegionData.cs
- nulltextnavigator.cs
- TreeView.cs
- UnknownBitmapDecoder.cs
- PageCodeDomTreeGenerator.cs
- AccessibleObject.cs
- BaseResourcesBuildProvider.cs
- PEFileReader.cs
- TimerEventSubscription.cs
- PageStatePersister.cs
- MobileTemplatedControlDesigner.cs
- Adorner.cs
- AssemblyResourceLoader.cs
- XmlQuerySequence.cs
- ProtectedConfiguration.cs