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
- Calendar.cs
- StyleTypedPropertyAttribute.cs
- DecoderReplacementFallback.cs
- ControllableStoryboardAction.cs
- NativeMethods.cs
- AppDomainProtocolHandler.cs
- SiteMapNodeItem.cs
- IPPacketInformation.cs
- CodeAttributeDeclarationCollection.cs
- NumericExpr.cs
- OleTxTransaction.cs
- LinqDataSourceHelper.cs
- HtmlHead.cs
- ConfigDefinitionUpdates.cs
- ContextMenuStrip.cs
- RawStylusInput.cs
- MetadataFile.cs
- RegexCompiler.cs
- SiteMapNodeCollection.cs
- Vector3DCollectionValueSerializer.cs
- SurrogateSelector.cs
- UpdateProgress.cs
- Util.cs
- Crc32Helper.cs
- JsonReaderWriterFactory.cs
- TransformPattern.cs
- Size.cs
- ParseElement.cs
- HtmlLabelAdapter.cs
- Vector.cs
- AppDomain.cs
- ResourcesBuildProvider.cs
- RectValueSerializer.cs
- SizeConverter.cs
- DmlSqlGenerator.cs
- RTLAwareMessageBox.cs
- Publisher.cs
- LostFocusEventManager.cs
- ApplicationFileCodeDomTreeGenerator.cs
- DataSourceSelectArguments.cs
- SafeArrayTypeMismatchException.cs
- SqlConnectionFactory.cs
- PageCodeDomTreeGenerator.cs
- AttributeQuery.cs
- TakeOrSkipQueryOperator.cs
- AtomMaterializerLog.cs
- TypeDefinition.cs
- ToolstripProfessionalRenderer.cs
- DropDownList.cs
- VariantWrapper.cs
- WebPartEditorOkVerb.cs
- CodeDOMProvider.cs
- CopyEncoder.cs
- DateTimeOffsetConverter.cs
- JapaneseLunisolarCalendar.cs
- PTUtility.cs
- SignalGate.cs
- WebExceptionStatus.cs
- LinkClickEvent.cs
- TransactionChannelListener.cs
- StsCommunicationException.cs
- Int16Animation.cs
- RadioButtonStandardAdapter.cs
- BitmapMetadata.cs
- EditorZoneBase.cs
- Hyperlink.cs
- CommonDialog.cs
- MouseActionConverter.cs
- InvalidContentTypeException.cs
- TransformerInfo.cs
- WmlTextViewAdapter.cs
- HintTextMaxWidthConverter.cs
- TransformCollection.cs
- DataViewManager.cs
- RegisteredExpandoAttribute.cs
- HwndKeyboardInputProvider.cs
- MemoryMappedViewStream.cs
- Base64Decoder.cs
- ErrorWrapper.cs
- WinFormsComponentEditor.cs
- ConfigPathUtility.cs
- InputLanguage.cs
- AudioFormatConverter.cs
- DataGridViewButtonColumn.cs
- EndSelectCardRequest.cs
- DrawingContextWalker.cs
- remotingproxy.cs
- PasswordRecovery.cs
- DynamicMethod.cs
- DataSourceViewSchemaConverter.cs
- DataDocumentXPathNavigator.cs
- InputBinding.cs
- OverrideMode.cs
- storepermissionattribute.cs
- DelegatingTypeDescriptionProvider.cs
- AttributeAction.cs
- WmlControlAdapter.cs
- EdmMember.cs
- MobileControlBuilder.cs
- WebResponse.cs