Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Documents / TextTreePropertyUndoUnit.cs / 1 / TextTreePropertyUndoUnit.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Undo unit for TextContainer.SetValue, etc. calls. // // History: // 03/03/2004 : [....] - Created // //--------------------------------------------------------------------------- using System; using MS.Internal; namespace System.Windows.Documents { // Undo unit for TextContainer.SetValue, etc. calls. internal class TextTreePropertyUndoUnit : TextTreeUndoUnit { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Create a new undo unit instance. // symbolOffset is where property values will be set. internal TextTreePropertyUndoUnit(TextContainer tree, int symbolOffset, PropertyRecord propertyRecord) : base(tree, symbolOffset) { _propertyRecord = propertyRecord; } #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- #region Public Methods // Called by the undo manager. Restores tree state to its condition // when the unit was created. Assumes the tree state matches conditions // just after the unit was created. public override void DoCore() { TextPointer position; VerifyTreeContentHashCode(); position = new TextPointer(this.TextContainer, this.SymbolOffset, LogicalDirection.Forward); Invariant.Assert(position.GetPointerContext(LogicalDirection.Backward) == TextPointerContext.ElementStart, "TextTree undo unit out of sync with TextTree."); if (_propertyRecord.Value != DependencyProperty.UnsetValue) { this.TextContainer.SetValue(position, _propertyRecord.Property, _propertyRecord.Value); } else { position.Parent.ClearValue(_propertyRecord.Property); } } #endregion Public Methods //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields // Property/value pair to restore. private readonly PropertyRecord _propertyRecord; #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
- DataGridViewSelectedColumnCollection.cs
- DSACryptoServiceProvider.cs
- DbDeleteCommandTree.cs
- OdbcEnvironment.cs
- DecimalSumAggregationOperator.cs
- RectangleF.cs
- OracleEncoding.cs
- DirectionalAction.cs
- Constant.cs
- MustUnderstandSoapException.cs
- NonBatchDirectoryCompiler.cs
- ZipPackage.cs
- MailWriter.cs
- Utils.cs
- EntityModelBuildProvider.cs
- LineGeometry.cs
- RowToFieldTransformer.cs
- ApplicationSecurityManager.cs
- DBAsyncResult.cs
- ThreadPool.cs
- PersonalizableTypeEntry.cs
- DoubleCollectionConverter.cs
- AutoResizedEvent.cs
- DataSysAttribute.cs
- XmlNullResolver.cs
- FilterableAttribute.cs
- AccessViolationException.cs
- HyperLink.cs
- ExternalFile.cs
- Dictionary.cs
- TreeWalkHelper.cs
- Attributes.cs
- SQLGuid.cs
- DocumentViewerBaseAutomationPeer.cs
- safemediahandle.cs
- SetUserLanguageRequest.cs
- mongolianshape.cs
- LoginDesignerUtil.cs
- BufferedGraphicsManager.cs
- InkCanvasAutomationPeer.cs
- SqlSupersetValidator.cs
- BigInt.cs
- StructuralType.cs
- SqlFunctions.cs
- ZoneIdentityPermission.cs
- FixedPageProcessor.cs
- MessageSecurityOverMsmq.cs
- PropertyIDSet.cs
- HelpKeywordAttribute.cs
- ObjRef.cs
- WindowPattern.cs
- MessageVersion.cs
- Literal.cs
- SqlWebEventProvider.cs
- SettingsAttributes.cs
- Line.cs
- SecurityToken.cs
- ListMarkerSourceInfo.cs
- Scene3D.cs
- MenuEventArgs.cs
- QilChoice.cs
- DiscoveryClientElement.cs
- DataGridTablesFactory.cs
- DropSource.cs
- AuthorizationSection.cs
- PeerToPeerException.cs
- MissingMethodException.cs
- SystemIPGlobalProperties.cs
- NameValuePermission.cs
- QueryCacheEntry.cs
- WebPartTransformerCollection.cs
- GC.cs
- XmlDataSource.cs
- ExtensionWindowResizeGrip.cs
- ExpressionEvaluator.cs
- MetadataUtil.cs
- ProviderMetadata.cs
- ProgressBarRenderer.cs
- MethodToken.cs
- GiveFeedbackEvent.cs
- NavigateEvent.cs
- UnmanagedMarshal.cs
- BamlCollectionHolder.cs
- CustomExpression.cs
- ExtensionFile.cs
- ListMarkerSourceInfo.cs
- JournalEntryStack.cs
- DataGridViewControlCollection.cs
- CipherData.cs
- Internal.cs
- ClientSettingsSection.cs
- StyleSheetRefUrlEditor.cs
- DataGridViewDataConnection.cs
- JumpItem.cs
- ToolStripArrowRenderEventArgs.cs
- ColumnHeader.cs
- Cursor.cs
- IsolatedStorage.cs
- XmlToDatasetMap.cs
- CodeArrayCreateExpression.cs