Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Documents / TextTreeInsertUndoUnit.cs / 1 / TextTreeInsertUndoUnit.cs
//---------------------------------------------------------------------------- // // File: TextTreeInsertUndoUnit.cs // // Description: Undo unit for TextContainer.InsertText and InsertEmbeddedObject calls. // // History: // 03/03/2004 : benwest - Created // //--------------------------------------------------------------------------- using System; using MS.Internal; namespace System.Windows.Documents { // Undo unit for TextContainer.InsertText and InsertEmbeddedObject calls. internal class TextTreeInsertUndoUnit : TextTreeUndoUnit { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Create a new undo unit instance. // symbolOffset and symbolCount track the offset of the inserted content // and its symbol count, respectively. internal TextTreeInsertUndoUnit(TextContainer tree, int symbolOffset, int symbolCount) : base(tree, symbolOffset) { Invariant.Assert(symbolCount > 0, "Creating no-op insert undo unit!"); _symbolCount = symbolCount; } #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 start; TextPointer end; VerifyTreeContentHashCode(); start = new TextPointer(this.TextContainer, this.SymbolOffset, LogicalDirection.Forward); end = new TextPointer(this.TextContainer, this.SymbolOffset + _symbolCount, LogicalDirection.Forward); this.TextContainer.DeleteContentInternal(start, end); } #endregion Public Methods //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields // Count of symbols to remove. private readonly int _symbolCount; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // File: TextTreeInsertUndoUnit.cs // // Description: Undo unit for TextContainer.InsertText and InsertEmbeddedObject calls. // // History: // 03/03/2004 : benwest - Created // //--------------------------------------------------------------------------- using System; using MS.Internal; namespace System.Windows.Documents { // Undo unit for TextContainer.InsertText and InsertEmbeddedObject calls. internal class TextTreeInsertUndoUnit : TextTreeUndoUnit { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Create a new undo unit instance. // symbolOffset and symbolCount track the offset of the inserted content // and its symbol count, respectively. internal TextTreeInsertUndoUnit(TextContainer tree, int symbolOffset, int symbolCount) : base(tree, symbolOffset) { Invariant.Assert(symbolCount > 0, "Creating no-op insert undo unit!"); _symbolCount = symbolCount; } #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 start; TextPointer end; VerifyTreeContentHashCode(); start = new TextPointer(this.TextContainer, this.SymbolOffset, LogicalDirection.Forward); end = new TextPointer(this.TextContainer, this.SymbolOffset + _symbolCount, LogicalDirection.Forward); this.TextContainer.DeleteContentInternal(start, end); } #endregion Public Methods //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields // Count of symbols to remove. private readonly int _symbolCount; #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
- Matrix3DConverter.cs
- CellQuery.cs
- CultureInfoConverter.cs
- TableStyle.cs
- BindingNavigatorDesigner.cs
- HttpRequestContext.cs
- PropertyGridEditorPart.cs
- SerializationFieldInfo.cs
- PositiveTimeSpanValidator.cs
- HtmlShimManager.cs
- MenuAutomationPeer.cs
- Module.cs
- EventlogProvider.cs
- FileDialog.cs
- Exceptions.cs
- DetailsViewDeleteEventArgs.cs
- AutomationPropertyInfo.cs
- TreeViewHitTestInfo.cs
- WebPartZoneCollection.cs
- DataGridViewColumnCollection.cs
- AttributedMetaModel.cs
- DecoderFallback.cs
- PrintDialogDesigner.cs
- HttpFileCollection.cs
- SmtpMail.cs
- LogStream.cs
- hwndwrapper.cs
- AccessDataSource.cs
- CacheChildrenQuery.cs
- FragmentQueryKB.cs
- XmlArrayItemAttribute.cs
- WebResponse.cs
- TextBox.cs
- RectAnimationBase.cs
- EventProviderWriter.cs
- RequestCache.cs
- XmlSchemaException.cs
- BindingList.cs
- GraphicsContainer.cs
- TypeUsage.cs
- StickyNoteContentControl.cs
- TextServicesLoader.cs
- SafeMemoryMappedFileHandle.cs
- ParameterBuilder.cs
- ExplicitDiscriminatorMap.cs
- DocobjHost.cs
- ConfigXmlCDataSection.cs
- AdornerHitTestResult.cs
- CodePropertyReferenceExpression.cs
- AutoGeneratedFieldProperties.cs
- ResXDataNode.cs
- XmlBinaryReader.cs
- Gdiplus.cs
- ResourceManagerWrapper.cs
- SqlDataAdapter.cs
- MailWriter.cs
- ClickablePoint.cs
- RemoteDebugger.cs
- WebControl.cs
- xml.cs
- RewritingProcessor.cs
- CancelAsyncOperationRequest.cs
- FillRuleValidation.cs
- TransformProviderWrapper.cs
- InkCanvasFeedbackAdorner.cs
- ExtenderProvidedPropertyAttribute.cs
- XmlSchemaSet.cs
- EmptyEnumerable.cs
- BindingExpression.cs
- CellQuery.cs
- SoapMessage.cs
- WebPartUtil.cs
- BackgroundFormatInfo.cs
- OracleRowUpdatingEventArgs.cs
- KeyValueConfigurationCollection.cs
- ActivityDelegate.cs
- TextOptionsInternal.cs
- ServiceModelDictionary.cs
- FrameworkContentElement.cs
- DiagnosticsConfiguration.cs
- DesignerCommandSet.cs
- ScriptRegistrationManager.cs
- Accessors.cs
- PagerSettings.cs
- ServiceNameElement.cs
- TrustLevelCollection.cs
- EllipticalNodeOperations.cs
- ObjectQueryState.cs
- TimerElapsedEvenArgs.cs
- PropertyItem.cs
- WebHeaderCollection.cs
- RankException.cs
- ShaperBuffers.cs
- XmlSecureResolver.cs
- AddInDeploymentState.cs
- MatrixStack.cs
- FrameworkObject.cs
- CLRBindingWorker.cs
- HtmlElementCollection.cs
- StreamedWorkflowDefinitionContext.cs