Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Controls / TextChange.cs / 1 / TextChange.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // // History: // 6/1/2007 : [....] - Created // //--------------------------------------------------------------------------- using System; using System.Windows; using System.Collections; namespace System.Windows.Controls { ////// Specifies the changes applied to TextContainer content. /// public class TextChange { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors internal TextChange() { } #endregion Constructors //------------------------------------------------------ // // Public Members // //----------------------------------------------------- #region Public Members ////// 0-based character offset for this change /// public int Offset { get { return _offset; } internal set { _offset = value; } } ////// Number of characters added /// public int AddedLength { get { return _addedLength; } internal set { _addedLength = value; } } ////// Number of characters removed /// public int RemovedLength { get { return _removedLength; } internal set { _removedLength = value; } } #endregion Public Members //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields private int _offset; private int _addedLength; private int _removedLength; #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
- Model3DGroup.cs
- __Filters.cs
- MorphHelper.cs
- MetadataSource.cs
- DocumentViewerHelper.cs
- AdPostCacheSubstitution.cs
- LineSegment.cs
- SQLBoolean.cs
- DiscardableAttribute.cs
- SecurityContext.cs
- SmtpClient.cs
- InvalidCommandTreeException.cs
- Subset.cs
- VectorValueSerializer.cs
- ManagementBaseObject.cs
- Model3DCollection.cs
- XmlnsCache.cs
- ExtendLockCommand.cs
- SafeHandles.cs
- PtsContext.cs
- EntityDesignerDataSourceView.cs
- ButtonColumn.cs
- dataprotectionpermission.cs
- TextRange.cs
- StringHandle.cs
- PrimitiveSchema.cs
- DocumentEventArgs.cs
- HealthMonitoringSectionHelper.cs
- MdiWindowListItemConverter.cs
- OutputWindow.cs
- ProjectedSlot.cs
- GeneralTransformGroup.cs
- SQLInt32Storage.cs
- TextElementEnumerator.cs
- mda.cs
- XmlQueryTypeFactory.cs
- httpstaticobjectscollection.cs
- BackStopAuthenticationModule.cs
- DataStorage.cs
- WhitespaceSignificantCollectionAttribute.cs
- RenameRuleObjectDialog.cs
- Literal.cs
- ImageBrush.cs
- FamilyMapCollection.cs
- CopyOnWriteList.cs
- DataKeyArray.cs
- HierarchicalDataSourceControl.cs
- SchemaConstraints.cs
- EntityModelBuildProvider.cs
- RootDesignerSerializerAttribute.cs
- PropertyChangedEventManager.cs
- SByte.cs
- CroppedBitmap.cs
- Pkcs7Recipient.cs
- DictionaryEntry.cs
- SymbolResolver.cs
- OperandQuery.cs
- Pen.cs
- OwnerDrawPropertyBag.cs
- XmlCharType.cs
- CheckedPointers.cs
- PerformanceCounterCategory.cs
- DetailsViewPageEventArgs.cs
- RemotingServices.cs
- WebExceptionStatus.cs
- ButtonBase.cs
- ApplicationException.cs
- InstallerTypeAttribute.cs
- _KerberosClient.cs
- DefaultValueAttribute.cs
- IdleTimeoutMonitor.cs
- FrugalList.cs
- NamespaceExpr.cs
- XmlWriterSettings.cs
- SoapIgnoreAttribute.cs
- TabItemAutomationPeer.cs
- ProvideValueServiceProvider.cs
- DBSchemaTable.cs
- RadioButtonBaseAdapter.cs
- FileVersionInfo.cs
- ConfigXmlWhitespace.cs
- Baml2006ReaderFrame.cs
- AutomationEventArgs.cs
- Visual.cs
- TextOnlyOutput.cs
- CommandEventArgs.cs
- PeerNameResolver.cs
- CompositeDataBoundControl.cs
- precedingquery.cs
- HMACSHA512.cs
- KnownTypesHelper.cs
- HelpEvent.cs
- AttachedPropertyInfo.cs
- TreeNodeClickEventArgs.cs
- initElementDictionary.cs
- Menu.cs
- ExpressionBindingCollection.cs
- ColumnHeaderConverter.cs
- Size3D.cs
- CodeNamespaceImportCollection.cs