Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / SpellerError.cs / 1305600 / SpellerError.cs
//---------------------------------------------------------------------------- // // File: SpellerError.cs // // Description: A misspelled word in a TextBox or RichTextBox. // //--------------------------------------------------------------------------- namespace System.Windows.Controls { using System.Collections; using System.Collections.Generic; using System.Windows.Documents; using MS.Internal; ////// A misspelled word in a TextBox or RichTextBox. /// public class SpellingError { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Creates a new instance. internal SpellingError(Speller speller, ITextPointer start, ITextPointer end) { Invariant.Assert(start.CompareTo(end) < 0); _speller = speller; _start = start.GetFrozenPointer(LogicalDirection.Forward); _end = end.GetFrozenPointer(LogicalDirection.Backward); } #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- #region Public Methods ////// Replaces the spelling error text with a specificed correction. /// /// /// Text to replace the error. /// ////// This method repositions the caret to the position immediately /// following the corrected text. /// public void Correct(string correctedText) { if (correctedText == null) { correctedText = String.Empty; // Parity with TextBox.Text. } ITextRange range = new TextRange(_start, _end); range.Text = correctedText; } ////// Instructs the control to ignore this error and any duplicates for /// the remainder of its lifetime. /// public void IgnoreAll() { _speller.IgnoreAll(TextRangeBase.GetTextInternal(_start, _end)); } #endregion Public methods //------------------------------------------------------ // // Public Properties // //------------------------------------------------------ #region Public Properties ////// A list of suggested replaced for the misspelled text. /// ////// May be empty, meaning no suggestions are available. /// public IEnumerableSuggestions { get { IList suggestions = _speller.GetSuggestionsForError(this); for (int i=0; i /// Start position of the misspelled text. /// internal ITextPointer Start { get { return _start; } } /// /// End position of the misspelled text. /// internal ITextPointer End { get { return _end; } } #endregion Internal Properties //----------------------------------------------------- // // Private Fields // //----------------------------------------------------- #region Private Fields // Speller associated with this error. private readonly Speller _speller; // Start position of the error text. private readonly ITextPointer _start; // End position of the error text. private readonly ITextPointer _end; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // File: SpellerError.cs // // Description: A misspelled word in a TextBox or RichTextBox. // //--------------------------------------------------------------------------- namespace System.Windows.Controls { using System.Collections; using System.Collections.Generic; using System.Windows.Documents; using MS.Internal; ////// A misspelled word in a TextBox or RichTextBox. /// public class SpellingError { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Creates a new instance. internal SpellingError(Speller speller, ITextPointer start, ITextPointer end) { Invariant.Assert(start.CompareTo(end) < 0); _speller = speller; _start = start.GetFrozenPointer(LogicalDirection.Forward); _end = end.GetFrozenPointer(LogicalDirection.Backward); } #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- #region Public Methods ////// Replaces the spelling error text with a specificed correction. /// /// /// Text to replace the error. /// ////// This method repositions the caret to the position immediately /// following the corrected text. /// public void Correct(string correctedText) { if (correctedText == null) { correctedText = String.Empty; // Parity with TextBox.Text. } ITextRange range = new TextRange(_start, _end); range.Text = correctedText; } ////// Instructs the control to ignore this error and any duplicates for /// the remainder of its lifetime. /// public void IgnoreAll() { _speller.IgnoreAll(TextRangeBase.GetTextInternal(_start, _end)); } #endregion Public methods //------------------------------------------------------ // // Public Properties // //------------------------------------------------------ #region Public Properties ////// A list of suggested replaced for the misspelled text. /// ////// May be empty, meaning no suggestions are available. /// public IEnumerableSuggestions { get { IList suggestions = _speller.GetSuggestionsForError(this); for (int i=0; i /// Start position of the misspelled text. /// internal ITextPointer Start { get { return _start; } } /// /// End position of the misspelled text. /// internal ITextPointer End { get { return _end; } } #endregion Internal Properties //----------------------------------------------------- // // Private Fields // //----------------------------------------------------- #region Private Fields // Speller associated with this error. private readonly Speller _speller; // Start position of the error text. private readonly ITextPointer _start; // End position of the error text. private readonly ITextPointer _end; #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
- UserControl.cs
- ListDictionary.cs
- HttpVersion.cs
- UnsafeNativeMethods.cs
- GridLength.cs
- SelectedDatesCollection.cs
- LayoutSettings.cs
- InvalidOperationException.cs
- XDeferredAxisSource.cs
- SplineKeyFrames.cs
- Ipv6Element.cs
- TCPClient.cs
- OleDbParameter.cs
- Group.cs
- RealProxy.cs
- SectionVisual.cs
- InputDevice.cs
- LinkArea.cs
- BooleanStorage.cs
- DriveNotFoundException.cs
- ListSourceHelper.cs
- HttpCachePolicyWrapper.cs
- WmpBitmapEncoder.cs
- EventlogProvider.cs
- ResourceAssociationSetEnd.cs
- DbConnectionFactory.cs
- WebPartExportVerb.cs
- VirtualPath.cs
- SplitterEvent.cs
- WebPartZoneCollection.cs
- CompositeTypefaceMetrics.cs
- CallSite.cs
- RestHandlerFactory.cs
- BackStopAuthenticationModule.cs
- XmlCharCheckingWriter.cs
- TextFormatter.cs
- ServiceBuildProvider.cs
- ClientUrlResolverWrapper.cs
- AlternationConverter.cs
- WebExceptionStatus.cs
- SpnegoTokenAuthenticator.cs
- DefaultAutoFieldGenerator.cs
- PasswordBoxAutomationPeer.cs
- PackageDigitalSignature.cs
- OutOfProcStateClientManager.cs
- ImmutableObjectAttribute.cs
- GenericTextProperties.cs
- SmiTypedGetterSetter.cs
- AuthorizationSection.cs
- StringWriter.cs
- ValueTypeFixupInfo.cs
- UrlAuthorizationModule.cs
- Pointer.cs
- MetadataUtilsSmi.cs
- DataGridViewAdvancedBorderStyle.cs
- input.cs
- DbgUtil.cs
- TextTreeInsertUndoUnit.cs
- Query.cs
- MailHeaderInfo.cs
- ImportCatalogPart.cs
- HiddenFieldDesigner.cs
- AdRotatorDesigner.cs
- PenCursorManager.cs
- CodeDirectionExpression.cs
- EditorAttribute.cs
- DataServiceProviderWrapper.cs
- DbQueryCommandTree.cs
- ToolStripDropDownMenu.cs
- PassportIdentity.cs
- TimeSpanMinutesConverter.cs
- ObjectView.cs
- ExpressionUtilities.cs
- TextParaClient.cs
- PathFigureCollectionConverter.cs
- XmlAttributeAttribute.cs
- XmlC14NWriter.cs
- BamlLocalizationDictionary.cs
- RowToFieldTransformer.cs
- Size.cs
- WebFormsRootDesigner.cs
- FixedSOMGroup.cs
- XamlStream.cs
- ToolStripSettings.cs
- InputLanguage.cs
- SimpleWebHandlerParser.cs
- ProcessThreadDesigner.cs
- ScrollBar.cs
- ThreadNeutralSemaphore.cs
- PageRanges.cs
- XmlnsCache.cs
- CompositionAdorner.cs
- HttpNamespaceReservationInstallComponent.cs
- GridEntryCollection.cs
- ProcessModule.cs
- EnvironmentPermission.cs
- BlurBitmapEffect.cs
- SearchForVirtualItemEventArgs.cs
- cookiecontainer.cs
- CallbackHandler.cs