Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / TextDecorationCollection.cs / 1 / TextDecorationCollection.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: TextDecorationCollection class // // History: // 10/14/2004: Garyyang Created the file // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Windows.Media.Animation; using System.Windows.Markup; using MS.Internal.PresentationCore; namespace System.Windows { ////// A collection of text decoration instances /// [TypeConverter(typeof(TextDecorationCollectionConverter))] [Localizability(LocalizationCategory.None, Readability=Readability.Unreadable)] public sealed partial class TextDecorationCollection : Animatable, IList { ////// Compare this collection with another TextDecorations. /// /// the text decoration collection to be compared ///true if two collections of TextDecorations contain equal TextDecoration objects in the /// the same order. false otherwise /// ////// The method doesn't check "full" equality as it can not take into account of all the possible /// values associated with the DependencyObject,such as Animation, DataBinding and Attached property. /// It only compares the public properties to serve the specific Framework's needs in inline property /// management and Editing serialization. /// [FriendAccessAllowed] // used by Framework internal bool ValueEquals(TextDecorationCollection textDecorations) { if (textDecorations == null) return false; // o is either null or not TextDecorations object if (this == textDecorations) return true; // Reference equality. if ( this.Count != textDecorations.Count) return false; // Two counts are different. // To be considered equal, TextDecorations should be same in the exact order. // Order matters because they imply the Z-order of the text decorations on screen. // Same set of text decorations drawn with different orders may have different result. for (int i = 0; i < this.Count; i++) { if (!this[i].ValueEquals(textDecorations[i])) return false; } return true; } ////// Add a collection of text decorations into the current collection /// /// The collection to be added [CLSCompliant(false)] public void Add(IEnumerabletextDecorations) { if (textDecorations == null) { throw new ArgumentNullException("textDecorations"); } foreach(TextDecoration textDecoration in textDecorations) { Add(textDecoration); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // // Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: TextDecorationCollection class // // History: // 10/14/2004: Garyyang Created the file // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Windows.Media.Animation; using System.Windows.Markup; using MS.Internal.PresentationCore; namespace System.Windows { ////// A collection of text decoration instances /// [TypeConverter(typeof(TextDecorationCollectionConverter))] [Localizability(LocalizationCategory.None, Readability=Readability.Unreadable)] public sealed partial class TextDecorationCollection : Animatable, IList { ////// Compare this collection with another TextDecorations. /// /// the text decoration collection to be compared ///true if two collections of TextDecorations contain equal TextDecoration objects in the /// the same order. false otherwise /// ////// The method doesn't check "full" equality as it can not take into account of all the possible /// values associated with the DependencyObject,such as Animation, DataBinding and Attached property. /// It only compares the public properties to serve the specific Framework's needs in inline property /// management and Editing serialization. /// [FriendAccessAllowed] // used by Framework internal bool ValueEquals(TextDecorationCollection textDecorations) { if (textDecorations == null) return false; // o is either null or not TextDecorations object if (this == textDecorations) return true; // Reference equality. if ( this.Count != textDecorations.Count) return false; // Two counts are different. // To be considered equal, TextDecorations should be same in the exact order. // Order matters because they imply the Z-order of the text decorations on screen. // Same set of text decorations drawn with different orders may have different result. for (int i = 0; i < this.Count; i++) { if (!this[i].ValueEquals(textDecorations[i])) return false; } return true; } ////// Add a collection of text decorations into the current collection /// /// The collection to be added [CLSCompliant(false)] public void Add(IEnumerabletextDecorations) { if (textDecorations == null) { throw new ArgumentNullException("textDecorations"); } foreach(TextDecoration textDecoration in textDecorations) { Add(textDecoration); } } } } // 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
- CopyAttributesAction.cs
- FormsAuthenticationConfiguration.cs
- ReadOnlyHierarchicalDataSource.cs
- BaseDataList.cs
- OracleException.cs
- SrgsNameValueTag.cs
- StagingAreaInputItem.cs
- SignerInfo.cs
- ProxyWebPartConnectionCollection.cs
- DataGridViewTextBoxColumn.cs
- DrawItemEvent.cs
- SelectionItemPattern.cs
- AssemblyBuilder.cs
- TdsRecordBufferSetter.cs
- InputManager.cs
- PointCollection.cs
- TableRowCollection.cs
- IPPacketInformation.cs
- SqlConnectionHelper.cs
- ItemsChangedEventArgs.cs
- DrawingContextWalker.cs
- SymmetricSecurityBindingElement.cs
- SerializationSectionGroup.cs
- GPPOINTF.cs
- TraceSection.cs
- GuidTagList.cs
- XmlSerializerFactory.cs
- FontCacheUtil.cs
- TextRenderer.cs
- ErasingStroke.cs
- DockAndAnchorLayout.cs
- LeftCellWrapper.cs
- CodeFieldReferenceExpression.cs
- XslCompiledTransform.cs
- SchemaCollectionCompiler.cs
- precedingquery.cs
- XmlEventCache.cs
- _NTAuthentication.cs
- PointUtil.cs
- TripleDESCryptoServiceProvider.cs
- SQLInt16Storage.cs
- HashCodeCombiner.cs
- Style.cs
- WindowsFormsHelpers.cs
- ReferentialConstraint.cs
- PixelShader.cs
- Parameter.cs
- AddingNewEventArgs.cs
- XmlAggregates.cs
- Win32Exception.cs
- DbMetaDataCollectionNames.cs
- HandoffBehavior.cs
- Utility.cs
- OpenTypeCommon.cs
- CmsInterop.cs
- Int32CAMarshaler.cs
- SoapReflectionImporter.cs
- Window.cs
- _DomainName.cs
- UInt16.cs
- XmlEncodedRawTextWriter.cs
- ManagementOperationWatcher.cs
- DBDataPermissionAttribute.cs
- ItemPager.cs
- ManipulationStartedEventArgs.cs
- TypeResolver.cs
- CustomTypeDescriptor.cs
- WebScriptEnablingElement.cs
- IdentityManager.cs
- ByteStreamBufferedMessageData.cs
- HostedNamedPipeTransportManager.cs
- TransactionState.cs
- DataSourceComponent.cs
- XmlObjectSerializerContext.cs
- DataServiceContext.cs
- PageTheme.cs
- ListManagerBindingsCollection.cs
- ErrorFormatterPage.cs
- ParseNumbers.cs
- HttpSysSettings.cs
- DbParameterHelper.cs
- IISUnsafeMethods.cs
- GreaterThan.cs
- TextSelectionProcessor.cs
- ExecutionPropertyManager.cs
- HttpWriter.cs
- ForeignKeyConstraint.cs
- Point3DKeyFrameCollection.cs
- XslTransform.cs
- TextServicesHost.cs
- SqlDependency.cs
- ProfileService.cs
- SerializerProvider.cs
- CodeIdentifiers.cs
- AssociatedControlConverter.cs
- XPathChildIterator.cs
- HelpKeywordAttribute.cs
- WebEncodingValidator.cs
- DataServices.cs
- ServiceDocument.cs