Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / textformatting / TextEndOfLine.cs / 1 / TextEndOfLine.cs
//------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation // // File: TextEndOfLine.cs // // Contents: Implementation of text linebreak control // // Spec: [....]/sites/Avalon/Specs/Text%20Formatting%20API.doc // // Created: 1-2-2004 [....] ([....]) // //----------------------------------------------------------------------- using System; using System.Collections; using System.Windows; 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 line /// public class TextEndOfLine : TextRun { private int _length; private TextRunProperties _textRunProperties; #region Constructors ////// Construct a linebreak run /// /// number of characters public TextEndOfLine(int length) : this(length, null) {} ////// Construct a linebreak run /// /// number of characters /// linebreak text run properties public TextEndOfLine( int length, TextRunProperties textRunProperties ) { if (length <= 0) throw new ArgumentOutOfRangeException("length", SR.Get(SRID.ParameterMustBeGreaterThanZero)); if (textRunProperties != null && textRunProperties.Typeface == null) throw new ArgumentNullException("textRunProperties.Typeface"); _length = length; _textRunProperties = textRunProperties; } #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 _textRunProperties; } } } } // 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
- DispatcherExceptionFilterEventArgs.cs
- ToolStripCodeDomSerializer.cs
- ParserHooks.cs
- NumberFormatter.cs
- CounterCreationDataConverter.cs
- XmlAttributeAttribute.cs
- ComponentCollection.cs
- XmlLanguageConverter.cs
- EditorZoneDesigner.cs
- TraceContextEventArgs.cs
- ApplicationServicesHostFactory.cs
- CollectionType.cs
- XmlRootAttribute.cs
- X509Utils.cs
- ConfigurationStrings.cs
- HtmlTable.cs
- LongValidatorAttribute.cs
- WindowsFormsHost.cs
- FunctionNode.cs
- LayeredChannelListener.cs
- AnimationException.cs
- DnsEndPoint.cs
- EditCommandColumn.cs
- PropertyConverter.cs
- SolidBrush.cs
- CustomAttributeBuilder.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- SafeFileMappingHandle.cs
- GZipStream.cs
- FormViewDesigner.cs
- DataListCommandEventArgs.cs
- OdbcConnection.cs
- RequestCacheValidator.cs
- LineGeometry.cs
- MutexSecurity.cs
- DataTableCollection.cs
- CompModSwitches.cs
- ClientFormsIdentity.cs
- NativeObjectSecurity.cs
- PropertyMappingExceptionEventArgs.cs
- DbSourceParameterCollection.cs
- SqlDeflator.cs
- DefinitionBase.cs
- TableLayoutPanelDesigner.cs
- Mapping.cs
- HtmlInputFile.cs
- AttachmentCollection.cs
- MenuItemStyleCollection.cs
- IconConverter.cs
- TextBounds.cs
- SqlWriter.cs
- FontFaceLayoutInfo.cs
- ReflectionUtil.cs
- CrossAppDomainChannel.cs
- XmlSchemaSimpleType.cs
- XmlSchemaAny.cs
- RecordsAffectedEventArgs.cs
- Point3D.cs
- PropertyMapper.cs
- EditorResources.cs
- Html32TextWriter.cs
- GeneratedView.cs
- ParamArrayAttribute.cs
- WebInvokeAttribute.cs
- X509ChainPolicy.cs
- BitStack.cs
- ListBoxItem.cs
- IfAction.cs
- SessionSwitchEventArgs.cs
- XmlIgnoreAttribute.cs
- SynchronizationValidator.cs
- RedirectionProxy.cs
- SoapHeaders.cs
- GeneralTransform2DTo3DTo2D.cs
- SequenceDesigner.cs
- CreatingCookieEventArgs.cs
- ButtonFieldBase.cs
- DirectoryLocalQuery.cs
- DefaultHttpHandler.cs
- StrongNameUtility.cs
- ListControlConvertEventArgs.cs
- DoubleCollection.cs
- NGCSerializationManager.cs
- SelectionPatternIdentifiers.cs
- ScalarType.cs
- StylusPointPropertyUnit.cs
- ValueSerializer.cs
- SqlTypesSchemaImporter.cs
- ClientFormsAuthenticationMembershipProvider.cs
- DataPointer.cs
- SharedPersonalizationStateInfo.cs
- PiiTraceSource.cs
- UIPermission.cs
- AnimationException.cs
- ProfileManager.cs
- wmiprovider.cs
- SqlBuilder.cs
- AnnotationDocumentPaginator.cs
- ControlTemplate.cs
- DynamicDiscoveryDocument.cs