Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- BamlLocalizableResource.cs
- SqlDependencyUtils.cs
- XmlSchemaGroup.cs
- FileClassifier.cs
- ObjectKeyFrameCollection.cs
- FontUnitConverter.cs
- InvokeGenerator.cs
- IERequestCache.cs
- ArrayWithOffset.cs
- DataTableMapping.cs
- CodeMemberEvent.cs
- AtomicFile.cs
- _UriTypeConverter.cs
- DefaultParameterValueAttribute.cs
- FactoryMaker.cs
- TabControl.cs
- DynamicUpdateCommand.cs
- Automation.cs
- Drawing.cs
- EditorOptionAttribute.cs
- HostingPreferredMapPath.cs
- MetadataArtifactLoader.cs
- ExpressionBindingCollection.cs
- AttachInfo.cs
- XamlParser.cs
- StyleCollectionEditor.cs
- XmlTextWriter.cs
- QilTypeChecker.cs
- EdmTypeAttribute.cs
- HostingPreferredMapPath.cs
- XmlTextEncoder.cs
- XmlSchemaIdentityConstraint.cs
- QilLoop.cs
- ToolStripContentPanelRenderEventArgs.cs
- DataGridCheckBoxColumn.cs
- DataGridViewCellCancelEventArgs.cs
- NativeMethods.cs
- FontSizeConverter.cs
- DataObjectEventArgs.cs
- ResourceContainer.cs
- X509ChainPolicy.cs
- CodeDirectiveCollection.cs
- ConnectionStringsExpressionBuilder.cs
- CssClassPropertyAttribute.cs
- XmlCollation.cs
- ServiceCredentialsElement.cs
- AnnotationAdorner.cs
- UInt64Storage.cs
- ApplicationHost.cs
- DrawingBrush.cs
- WebDescriptionAttribute.cs
- FontStretch.cs
- DataRecordInfo.cs
- CodeBinaryOperatorExpression.cs
- PresentationAppDomainManager.cs
- TraceHandler.cs
- CreateUserWizard.cs
- contentDescriptor.cs
- ColorDialog.cs
- X509Certificate.cs
- _UriSyntax.cs
- ConnectionsZoneDesigner.cs
- MsmqOutputSessionChannel.cs
- WebPartsPersonalizationAuthorization.cs
- StateValidator.cs
- ReferentialConstraintRoleElement.cs
- WindowsFormsSynchronizationContext.cs
- TabletCollection.cs
- TimeManager.cs
- Exceptions.cs
- ISAPIRuntime.cs
- ImageUrlEditor.cs
- ObjectItemNoOpAssemblyLoader.cs
- HtmlTable.cs
- XPathParser.cs
- SqlFileStream.cs
- GifBitmapDecoder.cs
- BuildProvider.cs
- WorkflowViewElement.cs
- TransformedBitmap.cs
- UriSection.cs
- ScriptResourceInfo.cs
- RawKeyboardInputReport.cs
- ImageClickEventArgs.cs
- RichTextBox.cs
- Automation.cs
- Gdiplus.cs
- VirtualPathUtility.cs
- CodeMethodReturnStatement.cs
- FormatConvertedBitmap.cs
- TypeUnloadedException.cs
- PeerCollaboration.cs
- OdbcParameter.cs
- DataViewSetting.cs
- ExtensibleClassFactory.cs
- TypeElementCollection.cs
- AppDomainAttributes.cs
- OperatorExpressions.cs
- __TransparentProxy.cs
- XNodeValidator.cs