Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / textformatting / TextEndOfSegment.cs / 1305600 / TextEndOfSegment.cs
//------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation, 2001 // // File: TextEndOfSegment.cs // // Contents: Text modification API // // Spec: http://avalon/text/DesignDocsAndSpecs/Text%20Formatting%20API.doc // // Created: 12-5-2004 Niklas Borson (niklasb) // //----------------------------------------------------------------------- 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. //------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation, 2001 // // File: TextEndOfSegment.cs // // Contents: Text modification API // // Spec: http://avalon/text/DesignDocsAndSpecs/Text%20Formatting%20API.doc // // Created: 12-5-2004 Niklas Borson (niklasb) // //----------------------------------------------------------------------- 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
- QuaternionIndependentAnimationStorage.cs
- UpdatePanelControlTrigger.cs
- SignerInfo.cs
- Sql8ExpressionRewriter.cs
- DBNull.cs
- StatusBar.cs
- XmlC14NWriter.cs
- XmlAttributeCollection.cs
- ColumnCollection.cs
- WinInet.cs
- SerializationStore.cs
- MatchingStyle.cs
- TypeKeyValue.cs
- ChannelManagerBase.cs
- OSFeature.cs
- ReflectionTypeLoadException.cs
- XmlDictionaryReaderQuotas.cs
- QueryStringParameter.cs
- XmlLanguage.cs
- WebPartDescription.cs
- StyleHelper.cs
- ItemDragEvent.cs
- KeySpline.cs
- GeometryDrawing.cs
- DataPager.cs
- HasCopySemanticsAttribute.cs
- NavigationProgressEventArgs.cs
- CharEnumerator.cs
- RecordManager.cs
- TreeViewImageKeyConverter.cs
- TableLayoutColumnStyleCollection.cs
- RawStylusInputCustomData.cs
- XmlILModule.cs
- XmlStreamedByteStreamReader.cs
- AppDomainAttributes.cs
- TypeInfo.cs
- BitmapFrameEncode.cs
- GridEntry.cs
- CompilerState.cs
- XmlNamespaceMapping.cs
- DefaultValueAttribute.cs
- BigInt.cs
- _ConnectStream.cs
- MissingFieldException.cs
- XmlHierarchyData.cs
- VideoDrawing.cs
- BindingOperations.cs
- AssemblyHash.cs
- ConfigUtil.cs
- DataTemplate.cs
- unitconverter.cs
- GetCardDetailsRequest.cs
- XPathAxisIterator.cs
- BamlResourceSerializer.cs
- PublishLicense.cs
- SemanticTag.cs
- WorkerProcess.cs
- PerformanceCountersElement.cs
- AdornedElementPlaceholder.cs
- RecordManager.cs
- EdmConstants.cs
- unitconverter.cs
- TextEffect.cs
- TextEndOfSegment.cs
- FunctionNode.cs
- DataTemplateKey.cs
- IndexOutOfRangeException.cs
- WebPartCloseVerb.cs
- SafeMemoryMappedViewHandle.cs
- MethodImplAttribute.cs
- ClientScriptItemCollection.cs
- BufferBuilder.cs
- JoinGraph.cs
- ColorPalette.cs
- OleDbMetaDataFactory.cs
- MemoryRecordBuffer.cs
- TokenCreationParameter.cs
- CounterSampleCalculator.cs
- StreamProxy.cs
- ListControlDesigner.cs
- ServiceDescriptionImporter.cs
- PtsHelper.cs
- LineServicesCallbacks.cs
- Parallel.cs
- UpdateException.cs
- RadioButtonBaseAdapter.cs
- Table.cs
- SingleTagSectionHandler.cs
- XomlCompilerError.cs
- HtmlWindow.cs
- CanExpandCollapseAllConverter.cs
- ReaderOutput.cs
- HttpRequest.cs
- XmlEncodedRawTextWriter.cs
- SafeNativeMethods.cs
- LiteralControl.cs
- ObjectViewListener.cs
- DesignerCatalogPartChrome.cs
- ProjectionPathSegment.cs
- ConditionalAttribute.cs