Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / 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: 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
- FileDataSourceCache.cs
- BooleanAnimationBase.cs
- FillRuleValidation.cs
- GPPOINTF.cs
- KnownIds.cs
- HostedAspNetEnvironment.cs
- Utils.cs
- Site.cs
- MessageQueueCriteria.cs
- columnmapkeybuilder.cs
- IncomingWebRequestContext.cs
- VoiceSynthesis.cs
- BaseTemplateParser.cs
- Boolean.cs
- MemberInfoSerializationHolder.cs
- OutputBuffer.cs
- QueryStringParameter.cs
- LockCookie.cs
- StringWriter.cs
- BlobPersonalizationState.cs
- DBParameter.cs
- SqlPersistenceProviderFactory.cs
- EntityContainerEntitySet.cs
- ProfileGroupSettingsCollection.cs
- XamlGridLengthSerializer.cs
- TextSpanModifier.cs
- XhtmlBasicPanelAdapter.cs
- WebConfigurationHostFileChange.cs
- KeyInterop.cs
- UrlMappingsModule.cs
- SparseMemoryStream.cs
- MetadataItemCollectionFactory.cs
- TextEditorDragDrop.cs
- WhitespaceRuleLookup.cs
- ProcessHostServerConfig.cs
- BitVec.cs
- RegexNode.cs
- NumericPagerField.cs
- Dispatcher.cs
- DesignerProperties.cs
- InvokeMethodActivityDesigner.cs
- FlowLayoutSettings.cs
- TextParaLineResult.cs
- CompilerInfo.cs
- ProfileServiceManager.cs
- ButtonFlatAdapter.cs
- PlatformCulture.cs
- XmlUrlResolver.cs
- NamedPipeTransportElement.cs
- SmtpCommands.cs
- UserUseLicenseDictionaryLoader.cs
- Mutex.cs
- DesignerTransactionCloseEvent.cs
- SyncOperationState.cs
- XmlDocumentType.cs
- RayMeshGeometry3DHitTestResult.cs
- WebPartPersonalization.cs
- WorkflowRuntimeServiceElement.cs
- InternalsVisibleToAttribute.cs
- JobStaple.cs
- ConfigXmlCDataSection.cs
- Button.cs
- EmptyStringExpandableObjectConverter.cs
- BinaryNode.cs
- DataObjectEventArgs.cs
- RuntimeUtils.cs
- ListBindingHelper.cs
- Win32Exception.cs
- Expressions.cs
- SslStream.cs
- NameNode.cs
- ToolStripSeparator.cs
- LinkAreaEditor.cs
- GeneralTransform.cs
- PageRequestManager.cs
- RowsCopiedEventArgs.cs
- PanelStyle.cs
- CacheHelper.cs
- DeleteStoreRequest.cs
- DataGridViewTextBoxEditingControl.cs
- ToolStripSystemRenderer.cs
- OwnerDrawPropertyBag.cs
- ToolStripTextBox.cs
- XPathNodeInfoAtom.cs
- WebPartConnectionsConnectVerb.cs
- PolicyManager.cs
- OpenFileDialog.cs
- CompressEmulationStream.cs
- RelationshipType.cs
- PropertyOverridesTypeEditor.cs
- SafeArchiveContext.cs
- RenderCapability.cs
- FormViewInsertEventArgs.cs
- MemberHolder.cs
- TextRangeBase.cs
- ResourceIDHelper.cs
- XmlTextEncoder.cs
- SQLString.cs
- AmbientEnvironment.cs
- OperationFormatter.cs