Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / TextTreePropertyUndoUnit.cs / 1305600 / 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 [....] 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. //---------------------------------------------------------------------------- // //// 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 [....] 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
- EditorZoneBase.cs
- ScriptIgnoreAttribute.cs
- ChildrenQuery.cs
- TableLayoutPanelResizeGlyph.cs
- TextSelectionProcessor.cs
- HeaderedItemsControl.cs
- handlecollector.cs
- BlurEffect.cs
- ReadOnlyPropertyMetadata.cs
- ThreadAttributes.cs
- WebPartChrome.cs
- NativeMethods.cs
- PermissionSetTriple.cs
- Viewport3DVisual.cs
- WorkflowMessageEventArgs.cs
- PerformanceCounterNameAttribute.cs
- DesignerImageAdapter.cs
- SQLChars.cs
- _LocalDataStore.cs
- TreeNodeCollection.cs
- COM2ComponentEditor.cs
- LogLogRecord.cs
- ScrollContentPresenter.cs
- XsltCompileContext.cs
- PersonalizationDictionary.cs
- PinnedBufferMemoryStream.cs
- BoundColumn.cs
- ZipIOCentralDirectoryFileHeader.cs
- FamilyMap.cs
- TextServicesCompartmentEventSink.cs
- EntityType.cs
- DocComment.cs
- ScriptResourceAttribute.cs
- CodeDOMUtility.cs
- XmlComplianceUtil.cs
- ServiceDescriptionImporter.cs
- Blend.cs
- ListViewGroupCollectionEditor.cs
- DomNameTable.cs
- InfoCardTrace.cs
- Constant.cs
- XmlIlVisitor.cs
- securitymgrsite.cs
- PageHandlerFactory.cs
- mediapermission.cs
- ExceptionRoutedEventArgs.cs
- WeakReferenceEnumerator.cs
- RuntimeVariableList.cs
- SchemaImporterExtensionsSection.cs
- MarkupWriter.cs
- EventLogEntryCollection.cs
- DataGridViewColumn.cs
- PropertyDescriptor.cs
- StateMachineWorkflowInstance.cs
- ToolStripGrip.cs
- SQLBytesStorage.cs
- SecurityUniqueId.cs
- WebPartUtil.cs
- ProfileModule.cs
- SchemaCollectionPreprocessor.cs
- DataGridLinkButton.cs
- PopOutPanel.cs
- FileEnumerator.cs
- RowBinding.cs
- DynamicILGenerator.cs
- TypeDelegator.cs
- Comparer.cs
- DiscardableAttribute.cs
- ApplicationFileParser.cs
- WindowShowOrOpenTracker.cs
- listitem.cs
- Exception.cs
- ZeroOpNode.cs
- LayoutSettings.cs
- GeometryConverter.cs
- EntityDataSourceDesigner.cs
- ReaderContextStackData.cs
- RawStylusInput.cs
- GridViewUpdateEventArgs.cs
- IndexedEnumerable.cs
- NTAccount.cs
- Pair.cs
- GeometryDrawing.cs
- ContourSegment.cs
- EntityAdapter.cs
- WebErrorHandler.cs
- XmlSchemaRedefine.cs
- DesignerForm.cs
- NamespaceEmitter.cs
- XPathNavigatorException.cs
- CompilationUnit.cs
- Pen.cs
- MouseEvent.cs
- BulletedList.cs
- WindowsGraphicsCacheManager.cs
- HttpPostClientProtocol.cs
- XslTransform.cs
- DocumentPaginator.cs
- MimeTypeAttribute.cs
- DbConnectionPoolOptions.cs