Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UICuesEvent.cs
- ProbeMatchesMessage11.cs
- StrongBox.cs
- ServicePointManager.cs
- WizardSideBarListControlItem.cs
- FatalException.cs
- TextViewSelectionProcessor.cs
- RulePatternOps.cs
- DependencyObjectProvider.cs
- InputLangChangeRequestEvent.cs
- SimpleHandlerFactory.cs
- BulletedList.cs
- SqlDataSourceSummaryPanel.cs
- TextSpanModifier.cs
- CoreSwitches.cs
- SQLBoolean.cs
- externdll.cs
- DataPagerField.cs
- WebDescriptionAttribute.cs
- AnonymousIdentificationSection.cs
- XpsFilter.cs
- EnumBuilder.cs
- PasswordRecovery.cs
- DocumentXmlWriter.cs
- SettingsBase.cs
- WpfPayload.cs
- FormViewUpdatedEventArgs.cs
- MULTI_QI.cs
- ConnectionProviderAttribute.cs
- Debug.cs
- TextElementEnumerator.cs
- AutomationElementIdentifiers.cs
- ProxyWebPartConnectionCollection.cs
- ClosableStream.cs
- FormatConvertedBitmap.cs
- TextLineResult.cs
- SoapHttpTransportImporter.cs
- ProfilePropertySettings.cs
- PeerCustomResolverSettings.cs
- DataRowChangeEvent.cs
- ServiceNameCollection.cs
- UnsafeNativeMethods.cs
- AssemblyBuilder.cs
- StatusBarDrawItemEvent.cs
- Font.cs
- WebPart.cs
- MobileControlsSectionHandler.cs
- Internal.cs
- DocumentXPathNavigator.cs
- DES.cs
- ObjectDataSourceChooseMethodsPanel.cs
- HostingEnvironmentException.cs
- SimpleExpression.cs
- ConfigsHelper.cs
- ActivityExecutorOperation.cs
- ColumnMapVisitor.cs
- CurrencyWrapper.cs
- MouseActionValueSerializer.cs
- _UncName.cs
- ExpressionBindingsDialog.cs
- PropertyGrid.cs
- AssemblyCacheEntry.cs
- CodeAccessPermission.cs
- DataTableCollection.cs
- StsCommunicationException.cs
- DBPropSet.cs
- ListControl.cs
- TreeNode.cs
- SourceFileInfo.cs
- ObjectListDataBindEventArgs.cs
- ButtonBaseAdapter.cs
- ComponentResourceManager.cs
- DataSourceHelper.cs
- BitConverter.cs
- MenuStrip.cs
- QilScopedVisitor.cs
- Dictionary.cs
- PeerTransportElement.cs
- FormatPage.cs
- ControlPaint.cs
- SqlServices.cs
- WindowsToolbarAsMenu.cs
- SafeRegistryHandle.cs
- OTFRasterizer.cs
- WebPermission.cs
- DynamicPropertyHolder.cs
- HtmlMeta.cs
- ChannelRequirements.cs
- BooleanFunctions.cs
- DesignerActionMethodItem.cs
- SnapshotChangeTrackingStrategy.cs
- PreviewPageInfo.cs
- TemplateBuilder.cs
- BrowserDefinitionCollection.cs
- XmlSchemaSimpleContent.cs
- TreeNodeBinding.cs
- CharacterShapingProperties.cs
- SecurityStandardsManager.cs
- StreamUpdate.cs
- RenderData.cs