Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Framework / System / Windows / Documents / SpellerError.cs / 1 / 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
- TypeConverter.cs
- KeyInstance.cs
- ExcludePathInfo.cs
- DurableEnlistmentState.cs
- StyleCollection.cs
- OutputCacheSettings.cs
- EventLogEntryCollection.cs
- GestureRecognitionResult.cs
- Visual3D.cs
- ChildDocumentBlock.cs
- DataGridViewTextBoxColumn.cs
- StringResourceManager.cs
- TraceProvider.cs
- ExceptionWrapper.cs
- HashRepartitionStream.cs
- WebEventTraceProvider.cs
- SafeRegistryHandle.cs
- XPathNavigatorReader.cs
- InkCanvasInnerCanvas.cs
- ContainerAction.cs
- DetailsViewDeleteEventArgs.cs
- TableLayoutPanel.cs
- FormClosedEvent.cs
- RedistVersionInfo.cs
- NTAccount.cs
- SkewTransform.cs
- arabicshape.cs
- GenericXmlSecurityToken.cs
- QueryParameter.cs
- ChannelPool.cs
- XmlAnyAttributeAttribute.cs
- DBSchemaRow.cs
- CellParagraph.cs
- TableLayoutPanel.cs
- Point.cs
- Compiler.cs
- ReflectionUtil.cs
- mediaclock.cs
- TypedTableGenerator.cs
- DataPagerFieldItem.cs
- SqlBuilder.cs
- ImageSource.cs
- SinglePhaseEnlistment.cs
- XamlSerializerUtil.cs
- PropertyPushdownHelper.cs
- OleDbEnumerator.cs
- PaintValueEventArgs.cs
- DesignerProperties.cs
- Assembly.cs
- ReturnValue.cs
- CompoundFileStorageReference.cs
- SafeSecurityHelper.cs
- BasicCellRelation.cs
- DataGridViewCellValidatingEventArgs.cs
- SQLInt16.cs
- CSharpCodeProvider.cs
- AppDomainManager.cs
- ConstrainedGroup.cs
- GeometryCollection.cs
- ComboBox.cs
- InternalMappingException.cs
- SocketPermission.cs
- BoundConstants.cs
- UIElement.cs
- SymbolMethod.cs
- RegexEditorDialog.cs
- TextEndOfParagraph.cs
- NavigationService.cs
- ComponentEvent.cs
- RuntimeIdentifierPropertyAttribute.cs
- ComponentSerializationService.cs
- HashMembershipCondition.cs
- DefaultAutoFieldGenerator.cs
- WebConfigurationManager.cs
- SafeHandle.cs
- WebZone.cs
- RPIdentityRequirement.cs
- EncodingFallbackAwareXmlTextWriter.cs
- FormsAuthentication.cs
- SortedList.cs
- MobileControlBuilder.cs
- Compiler.cs
- SharedStatics.cs
- DiscoveryEndpointElement.cs
- TextEditorMouse.cs
- IdnMapping.cs
- TraceSwitch.cs
- ContentHostHelper.cs
- _Win32.cs
- GridView.cs
- PathSegmentCollection.cs
- Byte.cs
- Asn1IntegerConverter.cs
- PassportIdentity.cs
- EventLogEntry.cs
- ExpressionNode.cs
- DataRelationCollection.cs
- TextFormatterImp.cs
- LoginCancelEventArgs.cs
- StorageEntityTypeMapping.cs