Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / textformatting / IndexedGlyphRun.cs / 1305600 / 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
- InkCollectionBehavior.cs
- GetIsBrowserClientRequest.cs
- SubMenuStyleCollection.cs
- ActionFrame.cs
- WorkflowShape.cs
- InputProviderSite.cs
- ObjectHandle.cs
- ProtectedConfigurationSection.cs
- SettingsAttributes.cs
- TraceContextEventArgs.cs
- DeferrableContentConverter.cs
- ConfigurationLockCollection.cs
- HeaderedItemsControl.cs
- XslAstAnalyzer.cs
- FieldToken.cs
- SqlClientFactory.cs
- SessionPageStatePersister.cs
- ServiceChannel.cs
- RuleEngine.cs
- RectangleConverter.cs
- MatrixKeyFrameCollection.cs
- CodeDomConfigurationHandler.cs
- HashRepartitionEnumerator.cs
- NonVisualControlAttribute.cs
- SystemWebCachingSectionGroup.cs
- IdentityNotMappedException.cs
- OpacityConverter.cs
- BitmapEffectGroup.cs
- IdentityReference.cs
- DataGridViewSortCompareEventArgs.cs
- CookieParameter.cs
- RemoteArgument.cs
- SparseMemoryStream.cs
- UrlMappingCollection.cs
- TagMapCollection.cs
- PageCache.cs
- TextEditorParagraphs.cs
- BamlCollectionHolder.cs
- XPathNavigatorKeyComparer.cs
- SpecularMaterial.cs
- WebPartVerbCollection.cs
- Dispatcher.cs
- BindStream.cs
- CompositeFontFamily.cs
- ScopeElementCollection.cs
- MethodImplAttribute.cs
- recordstatefactory.cs
- ColorDialog.cs
- MetadataItemEmitter.cs
- BrowserTree.cs
- CancelEventArgs.cs
- EpmContentSerializer.cs
- PrimaryKeyTypeConverter.cs
- TextEditorMouse.cs
- ToolStripPanelSelectionGlyph.cs
- ExpressionBindingsDialog.cs
- HtmlInputPassword.cs
- EncodingDataItem.cs
- KeyboardEventArgs.cs
- CommandField.cs
- MultiBinding.cs
- Context.cs
- ToolStripPanel.cs
- TableCell.cs
- XPathBinder.cs
- DataGridViewCellStyleConverter.cs
- OutputScopeManager.cs
- LogFlushAsyncResult.cs
- FormViewModeEventArgs.cs
- SqlBooleanizer.cs
- LineUtil.cs
- ExpandableObjectConverter.cs
- WorkflowServiceOperationListItem.cs
- CharEnumerator.cs
- FixedStringLookup.cs
- XmlSchemaValidator.cs
- XmlRawWriter.cs
- TemplateLookupAction.cs
- NumberFormatInfo.cs
- XmlKeywords.cs
- ImageCodecInfo.cs
- MatrixUtil.cs
- XmlSerializerOperationBehavior.cs
- Margins.cs
- WSSecurityTokenSerializer.cs
- SafeNativeMethodsMilCoreApi.cs
- StringAnimationBase.cs
- DrawItemEvent.cs
- BitmapEffectInputData.cs
- FormsAuthenticationTicket.cs
- DataGrid.cs
- EntityDataSourceMemberPath.cs
- ConnectionPointCookie.cs
- CollectionBuilder.cs
- ProtocolsConfiguration.cs
- URIFormatException.cs
- ResolveDuplexAsyncResult.cs
- ExceptionValidationRule.cs
- ThousandthOfEmRealPoints.cs
- DbCommandDefinition.cs