Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Media / textformatting / IndexedGlyphRun.cs / 1 / IndexedGlyphRun.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: IndexedGlyphRun class // // History: // 2/2/2004: Garyyang Created the file // //--------------------------------------------------------------------------- using System; using System.Windows.Media; namespace System.Windows.Media.TextFormatting { ////// GlyphRun indexed with text source character index. It allows clients to map a text source character index /// to the corresponding GlyphRun. /// public sealed class IndexedGlyphRun { ////// Internal constructor. /// internal IndexedGlyphRun( int textSourceCharacterIndex, int textSourceCharacterLength, GlyphRun glyphRun ) { _textSourceCharacterIndex = textSourceCharacterIndex; _length = textSourceCharacterLength; _glyphRun = glyphRun; } //---------------------------------- // Public properties //---------------------------------- ////// gets the text source character index corresponding to the beginning of the GlyphRun /// public int TextSourceCharacterIndex { get { return _textSourceCharacterIndex; } } ////// gets the text source character length corresponding to this GlyphRun. The text source character /// length does not necessarily equal to the character count in GlyphRun. /// public int TextSourceLength { get { return _length; } } ////// gets the GlyphRun object /// public GlyphRun GlyphRun { get { return _glyphRun; } } //------------------------- // private members //------------------------- private GlyphRun _glyphRun; private int _textSourceCharacterIndex; private int _length; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: IndexedGlyphRun class // // History: // 2/2/2004: Garyyang Created the file // //--------------------------------------------------------------------------- using System; using System.Windows.Media; namespace System.Windows.Media.TextFormatting { ////// GlyphRun indexed with text source character index. It allows clients to map a text source character index /// to the corresponding GlyphRun. /// public sealed class IndexedGlyphRun { ////// Internal constructor. /// internal IndexedGlyphRun( int textSourceCharacterIndex, int textSourceCharacterLength, GlyphRun glyphRun ) { _textSourceCharacterIndex = textSourceCharacterIndex; _length = textSourceCharacterLength; _glyphRun = glyphRun; } //---------------------------------- // Public properties //---------------------------------- ////// gets the text source character index corresponding to the beginning of the GlyphRun /// public int TextSourceCharacterIndex { get { return _textSourceCharacterIndex; } } ////// gets the text source character length corresponding to this GlyphRun. The text source character /// length does not necessarily equal to the character count in GlyphRun. /// public int TextSourceLength { get { return _length; } } ////// gets the GlyphRun object /// public GlyphRun GlyphRun { get { return _glyphRun; } } //------------------------- // private members //------------------------- private GlyphRun _glyphRun; private int _textSourceCharacterIndex; private int _length; } } // 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
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- UrlPropertyAttribute.cs
- DynamicAttribute.cs
- NotCondition.cs
- IntersectQueryOperator.cs
- ErrorTableItemStyle.cs
- ObjectStateManagerMetadata.cs
- AmbientValueAttribute.cs
- Variant.cs
- SoapEnumAttribute.cs
- BaseProcessor.cs
- OperatingSystem.cs
- OdbcCommandBuilder.cs
- SerializerProvider.cs
- WindowsStatusBar.cs
- XamlPathDataSerializer.cs
- IPPacketInformation.cs
- MapPathBasedVirtualPathProvider.cs
- SBCSCodePageEncoding.cs
- ApplicationCommands.cs
- IndependentAnimationStorage.cs
- SoapCommonClasses.cs
- SimpleFieldTemplateUserControl.cs
- LoadRetryHandler.cs
- StyleTypedPropertyAttribute.cs
- FunctionGenerator.cs
- XmlSchemaException.cs
- LifetimeServices.cs
- LifetimeServices.cs
- UpDownBase.cs
- WindowsEditBoxRange.cs
- XPathScanner.cs
- SystemIPAddressInformation.cs
- TrackingValidationObjectDictionary.cs
- PtsCache.cs
- XmlFormatMapping.cs
- CharacterBufferReference.cs
- FormsAuthenticationConfiguration.cs
- WebEncodingValidatorAttribute.cs
- SecureStringHasher.cs
- ExpressionPrinter.cs
- OdbcConnectionOpen.cs
- BitmapEffectInputData.cs
- TimeSpanMinutesConverter.cs
- Touch.cs
- PermissionToken.cs
- SByteConverter.cs
- LineBreak.cs
- ConfigurationPropertyCollection.cs
- RelationshipDetailsRow.cs
- TextContainerHelper.cs
- CollaborationHelperFunctions.cs
- AxHost.cs
- Convert.cs
- OneOfConst.cs
- VariableAction.cs
- BasicExpandProvider.cs
- ConnectionConsumerAttribute.cs
- WebControlParameterProxy.cs
- ClientProtocol.cs
- TreeWalkHelper.cs
- OracleCommandBuilder.cs
- SqlProviderServices.cs
- TraceHandlerErrorFormatter.cs
- StandardMenuStripVerb.cs
- BlurBitmapEffect.cs
- PreviewKeyDownEventArgs.cs
- UriExt.cs
- RemoteX509AsymmetricSecurityKey.cs
- XappLauncher.cs
- TextRangeEdit.cs
- MemberInfoSerializationHolder.cs
- UrlMappingsSection.cs
- updatecommandorderer.cs
- SafeMemoryMappedViewHandle.cs
- ExecutionContext.cs
- ServiceProviders.cs
- HostSecurityManager.cs
- X509CertificateStore.cs
- ResourceReferenceKeyNotFoundException.cs
- PreloadedPackages.cs
- ResXResourceReader.cs
- Splitter.cs
- ProviderConnectionPointCollection.cs
- OracleSqlParser.cs
- DtdParser.cs
- TableLayout.cs
- PiiTraceSource.cs
- SharedConnectionInfo.cs
- FormClosedEvent.cs
- ILGenerator.cs
- ItemsPanelTemplate.cs
- StatusBarPanelClickEvent.cs
- AttributeCollection.cs
- NodeInfo.cs
- CredentialManagerDialog.cs
- ComponentChangedEvent.cs
- TextParagraphProperties.cs
- Int16AnimationUsingKeyFrames.cs
- FixUpCollection.cs