Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / textformatting / TextEndOfSegment.cs / 1 / TextEndOfSegment.cs
//------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation, 2001 // // File: TextEndOfSegment.cs // // Contents: Text modification API // // Spec: [....]/text/DesignDocsAndSpecs/Text%20Formatting%20API.doc // // Created: 12-5-2004 [....] ([....]) // //----------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Windows; using System.Windows.Media; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media.TextFormatting { ////// Specialized text run used to mark the end of a segment, i.e., to end /// the scope affected by a preceding TextModifier run. /// public class TextEndOfSegment : TextRun { private int _length; #region Constructors ////// Construct an end of segment run /// /// number of characters public TextEndOfSegment(int length) { if (length <= 0) throw new ArgumentOutOfRangeException("length", SR.Get(SRID.ParameterMustBeGreaterThanZero)); _length = length; } #endregion ////// Reference to character buffer /// public sealed override CharacterBufferReference CharacterBufferReference { get { return new CharacterBufferReference(); } } ////// Character length /// public sealed override int Length { get { return _length; } } ////// A set of properties shared by every characters in the run /// public sealed override TextRunProperties Properties { get { return null; } } } } // 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
- DockingAttribute.cs
- ProtocolsConfigurationEntry.cs
- PolicyManager.cs
- PartitionedStreamMerger.cs
- JulianCalendar.cs
- DataSourceIDConverter.cs
- SmtpReplyReader.cs
- DateTimeFormat.cs
- SelectedCellsCollection.cs
- FrameworkName.cs
- HtmlElementEventArgs.cs
- Dispatcher.cs
- LassoHelper.cs
- UTF8Encoding.cs
- MouseDevice.cs
- MetadataArtifactLoader.cs
- StylusButtonEventArgs.cs
- ButtonColumn.cs
- TreeViewImageIndexConverter.cs
- WebPartConnectionsCancelVerb.cs
- ProcessHostServerConfig.cs
- DefaultHttpHandler.cs
- Comparer.cs
- DataGridTable.cs
- PropertyDescriptorGridEntry.cs
- HMACSHA1.cs
- ListenerElementsCollection.cs
- WindowsProgressbar.cs
- WebPartHeaderCloseVerb.cs
- MILUtilities.cs
- TraceShell.cs
- ResXResourceSet.cs
- XpsFilter.cs
- SectionInput.cs
- ConfigXmlWhitespace.cs
- CompilerErrorCollection.cs
- ToolStripControlHost.cs
- DesigntimeLicenseContextSerializer.cs
- DiagnosticTrace.cs
- Preprocessor.cs
- AspCompat.cs
- SqlHelper.cs
- GuidTagList.cs
- ClientEndpointLoader.cs
- SimpleTextLine.cs
- ParameterCollection.cs
- IdentityNotMappedException.cs
- PositiveTimeSpanValidatorAttribute.cs
- AbstractSvcMapFileLoader.cs
- ScriptHandlerFactory.cs
- ScriptControlDescriptor.cs
- DataObject.cs
- DebuggerAttributes.cs
- CodeStatement.cs
- TextParentUndoUnit.cs
- RuntimeEnvironment.cs
- Material.cs
- PropertyEmitter.cs
- WindowsScrollBar.cs
- EventMappingSettings.cs
- TdsParser.cs
- XmlSubtreeReader.cs
- MissingMethodException.cs
- HttpTransportBindingElement.cs
- OneOf.cs
- UpdateRecord.cs
- XPathSingletonIterator.cs
- XhtmlBasicTextBoxAdapter.cs
- XmlChildNodes.cs
- MetadataUtilsSmi.cs
- ChangePassword.cs
- WebPartExportVerb.cs
- BitmapEffectGroup.cs
- PersonalizationDictionary.cs
- CLRBindingWorker.cs
- IItemContainerGenerator.cs
- CodeSnippetExpression.cs
- DataContractSerializerMessageContractImporter.cs
- RequestQueue.cs
- UIElement3DAutomationPeer.cs
- Inflater.cs
- TransformerTypeCollection.cs
- HtmlInputSubmit.cs
- TextDecorations.cs
- WindowHelperService.cs
- SoapMessage.cs
- DebugView.cs
- FlowchartDesigner.xaml.cs
- SqlBulkCopy.cs
- RotateTransform.cs
- BreadCrumbTextConverter.cs
- SrgsRuleRef.cs
- OutputCacheProfile.cs
- ToolStripSystemRenderer.cs
- LocalClientSecuritySettingsElement.cs
- WinCategoryAttribute.cs
- _NegotiateClient.cs
- UserControl.cs
- InterleavedZipPartStream.cs
- PublishLicense.cs