Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Documents / TextContainerChangeEventArgs.cs / 2 / TextContainerChangeEventArgs.cs
//---------------------------------------------------------------------------- // // File: TextContainerChangeEventArgs.cs // // Description: The arguments sent when a Change event is fired in a TextContainer. // //--------------------------------------------------------------------------- using System; namespace System.Windows.Documents { ////// The TextContainerChangeEventArgs defines the event arguments sent when a /// TextContainer is changed. /// internal class TextContainerChangeEventArgs : EventArgs { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors internal TextContainerChangeEventArgs(ITextPointer textPosition, int count, int charCount, TextChangeType textChange) : this(textPosition, count, charCount, textChange, null, false) { } internal TextContainerChangeEventArgs(ITextPointer textPosition, int count, int charCount, TextChangeType textChange, DependencyProperty property, bool affectsRenderOnly) { _textPosition = textPosition.GetFrozenPointer(LogicalDirection.Forward); _count = count; _charCount = charCount; _textChange = textChange; _property = property; _affectsRenderOnly = affectsRenderOnly; } #endregion Constructors //------------------------------------------------------ // // Internal Properties // //----------------------------------------------------- #region Internal Properties // Position of the segment start, expressed as an ITextPointer. internal ITextPointer ITextPosition { get { return _textPosition; } } // Number of chars covered by this segment. internal int IMECharCount { get { return _charCount; } } internal bool AffectsRenderOnly { get { return _affectsRenderOnly; } } ////// /// internal int Count { get { return _count; } } ////// /// internal TextChangeType TextChange { get { return _textChange; } } ////// /// internal DependencyProperty Property { get { return _property; } } #endregion Internal Properties //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields // Position of the segment start, expressed as an ITextPointer. private readonly ITextPointer _textPosition; // Number of symbols covered by this segment. private readonly int _count; // Number of chars covered by this segment. private readonly int _charCount; // Type of change. private readonly TextChangeType _textChange; private readonly DependencyProperty _property; private readonly bool _affectsRenderOnly; #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
- ContainsRowNumberChecker.cs
- ReadContentAsBinaryHelper.cs
- DesignerValidatorAdapter.cs
- EntityKey.cs
- Permission.cs
- ZipFileInfo.cs
- DataGridViewRowConverter.cs
- MethodBody.cs
- TrustLevelCollection.cs
- TransformProviderWrapper.cs
- DynamicExpression.cs
- EntityDataSourceChangingEventArgs.cs
- EventData.cs
- ObjectParameterCollection.cs
- EntityParameterCollection.cs
- CapabilitiesPattern.cs
- SQLString.cs
- RestHandler.cs
- DataRowCollection.cs
- FolderLevelBuildProvider.cs
- SeekStoryboard.cs
- HandleCollector.cs
- ObjectManager.cs
- ImplicitInputBrush.cs
- XmlNullResolver.cs
- DecimalStorage.cs
- IsolatedStorageFileStream.cs
- EdmTypeAttribute.cs
- Literal.cs
- Pair.cs
- XmlSchemaChoice.cs
- RepeaterItemEventArgs.cs
- KeyConverter.cs
- CommandDevice.cs
- DataControlField.cs
- ErrorStyle.cs
- CodeTypeReference.cs
- SecurityTraceRecordHelper.cs
- PeerMessageDispatcher.cs
- HttpCapabilitiesSectionHandler.cs
- CmsInterop.cs
- BufferAllocator.cs
- SqlDataSourceConfigureSelectPanel.cs
- DrawingContextWalker.cs
- WebPartConnectionsCancelEventArgs.cs
- OleDbInfoMessageEvent.cs
- SupportingTokenSpecification.cs
- OdbcConnectionFactory.cs
- PackageStore.cs
- RelationshipWrapper.cs
- TdsEnums.cs
- RequestUriProcessor.cs
- TextPattern.cs
- UrlMapping.cs
- OdbcEnvironment.cs
- XmlTextAttribute.cs
- DesignSurfaceEvent.cs
- BadImageFormatException.cs
- mediaeventshelper.cs
- ContentTextAutomationPeer.cs
- MdiWindowListStrip.cs
- FactoryGenerator.cs
- TextEffectCollection.cs
- CheckBoxAutomationPeer.cs
- Processor.cs
- QueryTask.cs
- DriveInfo.cs
- Update.cs
- DecimalSumAggregationOperator.cs
- AQNBuilder.cs
- DropDownList.cs
- StreamHelper.cs
- InkPresenter.cs
- ListViewUpdateEventArgs.cs
- GridViewRowCollection.cs
- ToolStripSplitStackLayout.cs
- BinaryVersion.cs
- DuplicateDetector.cs
- Models.cs
- EventMap.cs
- MessageBox.cs
- SqlProvider.cs
- PropertyKey.cs
- EncryptedKey.cs
- PenCursorManager.cs
- Transactions.cs
- XmlEntity.cs
- TextEffect.cs
- BinaryFormatterWriter.cs
- HMACSHA256.cs
- TextServicesHost.cs
- Logging.cs
- QuaternionValueSerializer.cs
- CurrentChangingEventManager.cs
- ManagementExtension.cs
- EventHandlersStore.cs
- MouseGesture.cs
- DataGridItemEventArgs.cs
- StrongNameKeyPair.cs
- ContainerParaClient.cs