Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- odbcmetadatacollectionnames.cs
- EventLogPermissionHolder.cs
- SchemaMerger.cs
- OpCopier.cs
- MetadataItemEmitter.cs
- LabelDesigner.cs
- DrawingVisualDrawingContext.cs
- PeerCredentialElement.cs
- CheckedPointers.cs
- ObjectConverter.cs
- CodeMethodReturnStatement.cs
- TableStyle.cs
- WebPartTransformer.cs
- BuilderPropertyEntry.cs
- safex509handles.cs
- AsyncStreamReader.cs
- PeerContact.cs
- FixedStringLookup.cs
- DataBoundControl.cs
- ThousandthOfEmRealPoints.cs
- WeakReference.cs
- NavigationPropertyEmitter.cs
- EventHandlerList.cs
- MenuEventArgs.cs
- DefaultValueTypeConverter.cs
- ObjectTypeMapping.cs
- MeshGeometry3D.cs
- RemotingServices.cs
- XPathNodeList.cs
- ToolStripItemImageRenderEventArgs.cs
- ReadOnlyTernaryTree.cs
- DesignOnlyAttribute.cs
- LinqDataSourceUpdateEventArgs.cs
- XmlException.cs
- AtomServiceDocumentSerializer.cs
- EqualityArray.cs
- SrgsRuleRef.cs
- MetadataFile.cs
- ProcessRequestArgs.cs
- DataControlPagerLinkButton.cs
- ManipulationDevice.cs
- Enum.cs
- TextSelectionProcessor.cs
- CompoundFileStreamReference.cs
- RightsManagementEncryptedStream.cs
- MenuItem.cs
- GroupBoxAutomationPeer.cs
- FaultPropagationQuery.cs
- Registry.cs
- HostedImpersonationContext.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- ActiveXHost.cs
- UserControl.cs
- RequestQueue.cs
- StoreItemCollection.cs
- CodeComment.cs
- PresentationUIStyleResources.cs
- WrappedIUnknown.cs
- XmlSequenceWriter.cs
- SaveCardRequest.cs
- ObjectItemCollection.cs
- CompositeActivityTypeDescriptor.cs
- DataListAutoFormat.cs
- CompilerGlobalScopeAttribute.cs
- TimeoutStream.cs
- LayoutEditorPart.cs
- CodeDelegateInvokeExpression.cs
- BasePattern.cs
- DataSourceControlBuilder.cs
- LayoutEngine.cs
- DataGridViewColumnStateChangedEventArgs.cs
- Panel.cs
- SeparatorAutomationPeer.cs
- AlternateView.cs
- PersonalizationProviderCollection.cs
- EventSetter.cs
- DesignerVerb.cs
- SafeProcessHandle.cs
- UICuesEvent.cs
- XmlSchemaObjectCollection.cs
- AlternateView.cs
- ComponentConverter.cs
- StatusBarPanelClickEvent.cs
- EventLogPermissionEntry.cs
- XamlSerializerUtil.cs
- ActivityCodeDomReferenceService.cs
- TableLayoutSettings.cs
- DeploymentSection.cs
- IOThreadTimer.cs
- OleDbReferenceCollection.cs
- GenericUriParser.cs
- TextEndOfSegment.cs
- DataTableMappingCollection.cs
- ClrProviderManifest.cs
- InsufficientMemoryException.cs
- SoapDocumentMethodAttribute.cs
- Menu.cs
- TableParagraph.cs
- KeyProperty.cs
- Rect.cs