Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / textformatting / TextHidden.cs / 1 / TextHidden.cs
//------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation, 2004 // // File: TextHidden.cs // // Contents: Implementation of text hidden content // // 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 a range of hidden characters /// public class TextHidden : TextRun { private int _length; #region Constructors ////// Construct a hidden text run /// /// number of characters public TextHidden( 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
- SqlFacetAttribute.cs
- CroppedBitmap.cs
- WsatTransactionHeader.cs
- EventLogger.cs
- EventLogSession.cs
- DataFieldEditor.cs
- KeyEvent.cs
- EUCJPEncoding.cs
- DynamicDiscoSearcher.cs
- oledbmetadatacolumnnames.cs
- XmlSchemaDatatype.cs
- MultiPageTextView.cs
- DesignerProperties.cs
- Quaternion.cs
- RegexCompiler.cs
- OpenTypeMethods.cs
- AdRotator.cs
- WindowsListViewGroupHelper.cs
- XmlSchemaSimpleTypeRestriction.cs
- ContentPosition.cs
- TextBox.cs
- CustomValidator.cs
- ServiceObjectContainer.cs
- WebResponse.cs
- XmlBufferReader.cs
- RijndaelCryptoServiceProvider.cs
- WindowsStatic.cs
- ImageDrawing.cs
- SafeProcessHandle.cs
- NumericUpDown.cs
- SqlRowUpdatingEvent.cs
- Visual3D.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- TemplatePartAttribute.cs
- UpDownEvent.cs
- DataGridDetailsPresenter.cs
- ServiceMetadataPublishingElement.cs
- FlowchartDesigner.Helpers.cs
- StringCollectionMarkupSerializer.cs
- EdmFunctions.cs
- Directory.cs
- _LazyAsyncResult.cs
- TimeSpanConverter.cs
- MDIClient.cs
- SpotLight.cs
- InteropBitmapSource.cs
- wgx_render.cs
- XamlFxTrace.cs
- GetPageNumberCompletedEventArgs.cs
- ForeignKeyConstraint.cs
- ProviderConnectionPoint.cs
- QuadraticBezierSegment.cs
- OutOfMemoryException.cs
- SecUtil.cs
- HMACSHA384.cs
- TemplateField.cs
- CanExecuteRoutedEventArgs.cs
- ConstraintStruct.cs
- ServicePerformanceCounters.cs
- SspiWrapper.cs
- DecoderNLS.cs
- SocketPermission.cs
- WebUtil.cs
- SingleAnimationUsingKeyFrames.cs
- ControlPropertyNameConverter.cs
- StreamingContext.cs
- _TimerThread.cs
- HttpProfileBase.cs
- coordinatorfactory.cs
- DocobjHost.cs
- SHA1Cng.cs
- DesignerSerializerAttribute.cs
- Converter.cs
- ReferencedCollectionType.cs
- Literal.cs
- ObjectDataSourceDesigner.cs
- RestClientProxyHandler.cs
- HyperLinkField.cs
- FlagsAttribute.cs
- EventEntry.cs
- ClientRuntime.cs
- OracleCommandBuilder.cs
- UnsupportedPolicyOptionsException.cs
- SourceFileInfo.cs
- InheritanceAttribute.cs
- CellRelation.cs
- _UriSyntax.cs
- DataBinder.cs
- EmissiveMaterial.cs
- DiscreteKeyFrames.cs
- GifBitmapEncoder.cs
- SectionInput.cs
- ListItem.cs
- ServiceEndpointAssociationProvider.cs
- PersianCalendar.cs
- DesignerTransaction.cs
- PageBuildProvider.cs
- TdsParserHelperClasses.cs
- SessionStateItemCollection.cs
- MarshalByRefObject.cs