Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Controls / TextChange.cs / 1305600 / TextChange.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // // History: // 6/1/2007 : psarrett - 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
- BindingNavigator.cs
- GPRECTF.cs
- LinkButton.cs
- SchemaImporter.cs
- MessageAction.cs
- XPathNavigatorException.cs
- ErrorWebPart.cs
- ButtonFlatAdapter.cs
- ObservableCollectionDefaultValueFactory.cs
- XPathChildIterator.cs
- CheckBox.cs
- Vector3DCollectionConverter.cs
- TextServicesPropertyRanges.cs
- Intellisense.cs
- SystemMulticastIPAddressInformation.cs
- EmbeddedObject.cs
- DoubleLinkList.cs
- LogicalCallContext.cs
- TCEAdapterGenerator.cs
- DataRowCollection.cs
- DataSysAttribute.cs
- CodePrimitiveExpression.cs
- RowParagraph.cs
- DrawingVisual.cs
- MouseDevice.cs
- DiscoveryClientOutputChannel.cs
- SQLRoleProvider.cs
- XDRSchema.cs
- SyntaxCheck.cs
- MarshalDirectiveException.cs
- ColumnMapVisitor.cs
- DataGridTablesFactory.cs
- CompiledQueryCacheEntry.cs
- TypeCollectionPropertyEditor.cs
- HyperLinkColumn.cs
- OrderedDictionaryStateHelper.cs
- Invariant.cs
- XmlSchemaAnnotation.cs
- TextProperties.cs
- SqlDependencyUtils.cs
- DataBoundLiteralControl.cs
- FilteredAttributeCollection.cs
- LocalizationComments.cs
- UniqueIdentifierService.cs
- EventsTab.cs
- LineProperties.cs
- MaskedTextBoxTextEditor.cs
- IPPacketInformation.cs
- PersonalizationProvider.cs
- DoubleCollectionConverter.cs
- StateDesigner.Helpers.cs
- AnnotationComponentManager.cs
- SubclassTypeValidator.cs
- WebBrowserProgressChangedEventHandler.cs
- ParallelRangeManager.cs
- BrushConverter.cs
- BufferedGraphicsManager.cs
- StorageRoot.cs
- BrowserDefinitionCollection.cs
- WmlLiteralTextAdapter.cs
- BaseAppDomainProtocolHandler.cs
- HyperLink.cs
- SqlXml.cs
- XmlLanguageConverter.cs
- Splitter.cs
- SafeTimerHandle.cs
- Speller.cs
- AspCompat.cs
- TrackingParameters.cs
- XmlToDatasetMap.cs
- RectValueSerializer.cs
- MetadataImporterQuotas.cs
- ProfileSettingsCollection.cs
- XmlSortKey.cs
- SmtpReplyReaderFactory.cs
- CodeExpressionStatement.cs
- DataServiceBuildProvider.cs
- UnmanagedMemoryStream.cs
- HideDisabledControlAdapter.cs
- WindowsListBox.cs
- ServicePointManager.cs
- InternalMappingException.cs
- CodeSnippetStatement.cs
- DataGridViewColumn.cs
- DataSourceProvider.cs
- EnumValidator.cs
- Pair.cs
- ApplicationCommands.cs
- sqlstateclientmanager.cs
- SparseMemoryStream.cs
- TaiwanLunisolarCalendar.cs
- ContextQuery.cs
- SqlCachedBuffer.cs
- ReferenceEqualityComparer.cs
- HtmlAnchor.cs
- Region.cs
- AutoGeneratedField.cs
- ResourceReferenceKeyNotFoundException.cs
- Nullable.cs
- ScriptReferenceEventArgs.cs