Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / MS / Internal / PtsHost / TextFormatterHost.cs / 1 / TextFormatterHost.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: ContainerParagraph.cs // // Description: TextFormatter host. // // History: // 05/05/2003 : [....] - moving from Avalon branch. // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Windows; using System.Windows.Media; using System.Windows.Media.TextFormatting; namespace MS.Internal.PtsHost { // --------------------------------------------------------------------- // TextFormatter host. // --------------------------------------------------------------------- internal sealed class TextFormatterHost : TextSource { internal TextFormatterHost(TextFormatter textFormatter) { if(textFormatter == null) { TextFormatter = TextFormatter.FromCurrentDispatcher(); } else { TextFormatter = textFormatter; } } //-------------------------------------------------------------------- // GetTextRun //------------------------------------------------------------------- public override TextRun GetTextRun(int textSourceCharacterIndex) { Debug.Assert(Context != null, "TextFormatter host is not initialized."); Debug.Assert(textSourceCharacterIndex >= 0, "Character index must be non-negative."); return Context.GetTextRun(textSourceCharacterIndex); } //-------------------------------------------------------------------- // GetPrecedingText //-------------------------------------------------------------------- public override TextSpanGetPrecedingText(int textSourceCharacterIndexLimit) { Debug.Assert(Context != null, "TextFormatter host is not initialized."); Debug.Assert(textSourceCharacterIndexLimit >= 0, "Character index must be non-negative."); return Context.GetPrecedingText(textSourceCharacterIndexLimit); } /// /// TextFormatter to map a text source character index to a text effect character index /// /// text source character index ///the text effect index corresponding to the text effect character index public override int GetTextEffectCharacterIndexFromTextSourceCharacterIndex( int textSourceCharacterIndex ) { Debug.Assert(Context != null, "TextFormatter host is not initialized."); Debug.Assert(textSourceCharacterIndex>= 0, "Character index must be non-negative."); return Context.GetTextEffectCharacterIndexFromTextSourceCharacterIndex(textSourceCharacterIndex); } //------------------------------------------------------------------- // TextFormatterHost context, object responsible for providing // formatting information. //-------------------------------------------------------------------- internal LineBase Context; //------------------------------------------------------------------- // TextFormatter. //------------------------------------------------------------------- internal TextFormatter TextFormatter; } } // 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
- entityreference_tresulttype.cs
- LambdaCompiler.cs
- WorkflowMarkupElementEventArgs.cs
- GenericWebPart.cs
- Identity.cs
- IChannel.cs
- ItemsPresenter.cs
- AtomMaterializer.cs
- SqlFlattener.cs
- DependencyObjectType.cs
- DoubleSumAggregationOperator.cs
- FormatException.cs
- DetailsViewInsertedEventArgs.cs
- ViewStateModeByIdAttribute.cs
- LicenseException.cs
- SdlChannelSink.cs
- VersionedStream.cs
- DataGridColumnHeader.cs
- WindowPattern.cs
- IndexOutOfRangeException.cs
- TablePattern.cs
- TlsSspiNegotiation.cs
- CharacterHit.cs
- MarshalByRefObject.cs
- HideDisabledControlAdapter.cs
- TextElementEnumerator.cs
- GuidelineSet.cs
- CookielessHelper.cs
- QuaternionAnimation.cs
- ContextMenuStrip.cs
- ConnectionStringSettings.cs
- Int32RectConverter.cs
- ListBox.cs
- Thickness.cs
- FrugalList.cs
- Pair.cs
- CustomTypeDescriptor.cs
- InvalidProgramException.cs
- TimeSpanStorage.cs
- AQNBuilder.cs
- ConfigurationConverterBase.cs
- MouseWheelEventArgs.cs
- RegexStringValidatorAttribute.cs
- AsymmetricKeyExchangeDeformatter.cs
- VirtualizingPanel.cs
- HttpClientCertificate.cs
- TemplateBindingExpressionConverter.cs
- DataBinder.cs
- ProfileSettings.cs
- ZipIOCentralDirectoryBlock.cs
- ContentPosition.cs
- TempFiles.cs
- SchemaImporter.cs
- AnnotationResourceChangedEventArgs.cs
- HttpConfigurationSystem.cs
- NodeFunctions.cs
- XmlBindingWorker.cs
- DummyDataSource.cs
- Stack.cs
- IPGlobalProperties.cs
- ComAdminInterfaces.cs
- SafeProcessHandle.cs
- PolicyLevel.cs
- BinaryConverter.cs
- GreenMethods.cs
- VirtualDirectoryMappingCollection.cs
- ContentType.cs
- WebPartManagerInternals.cs
- ReaderWriterLock.cs
- baseaxisquery.cs
- FixedTextView.cs
- DesignSurfaceEvent.cs
- SqlBuilder.cs
- PopOutPanel.cs
- SchemaNotation.cs
- ReflectionServiceProvider.cs
- TraceSection.cs
- FlatButtonAppearance.cs
- GenerateHelper.cs
- Rotation3DAnimation.cs
- ProcessStartInfo.cs
- ContainerParaClient.cs
- UnconditionalPolicy.cs
- Region.cs
- HGlobalSafeHandle.cs
- SplitterEvent.cs
- DesignerForm.cs
- CommittableTransaction.cs
- EastAsianLunisolarCalendar.cs
- Certificate.cs
- BindingMemberInfo.cs
- DbException.cs
- StatusBar.cs
- ComponentResourceKey.cs
- ADConnectionHelper.cs
- CodeAttachEventStatement.cs
- ToolStripMenuItem.cs
- CaseInsensitiveHashCodeProvider.cs
- Adorner.cs
- LinkUtilities.cs