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
- WorkflowApplicationException.cs
- HeaderedContentControl.cs
- AcceptorSessionSymmetricTransportSecurityProtocol.cs
- ConcurrentStack.cs
- MetadataArtifactLoaderCompositeFile.cs
- ToolStripSeparatorRenderEventArgs.cs
- DrawingCollection.cs
- BitmapSizeOptions.cs
- RadioButtonFlatAdapter.cs
- ObjectStateEntryDbDataRecord.cs
- DateTimeConverter.cs
- _Events.cs
- DataQuery.cs
- AdRotator.cs
- DoubleLinkList.cs
- StretchValidation.cs
- TextServicesManager.cs
- UnsafeNativeMethods.cs
- ProtocolReflector.cs
- ILGenerator.cs
- Int16Animation.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- AccessedThroughPropertyAttribute.cs
- WebPartsPersonalization.cs
- GiveFeedbackEventArgs.cs
- SqlProvider.cs
- WebBrowserBase.cs
- XmlMtomWriter.cs
- DataGridViewCellCollection.cs
- EraserBehavior.cs
- MembershipValidatePasswordEventArgs.cs
- VBCodeProvider.cs
- WebHttpBindingCollectionElement.cs
- EventEntry.cs
- EngineSiteSapi.cs
- SqlAliaser.cs
- SendingRequestEventArgs.cs
- TextFormatterImp.cs
- DataServiceHostFactory.cs
- ProfileGroupSettings.cs
- SafeFileHandle.cs
- LogLogRecordHeader.cs
- SqlMethodTransformer.cs
- ElementHostAutomationPeer.cs
- DiscardableAttribute.cs
- CollectionView.cs
- Double.cs
- EUCJPEncoding.cs
- FactoryGenerator.cs
- BigInt.cs
- TypeDescriptor.cs
- DefaultValidator.cs
- BigInt.cs
- XmlSchemaAny.cs
- SqlRowUpdatingEvent.cs
- LeaseManager.cs
- RadioButtonBaseAdapter.cs
- XmlWrappingReader.cs
- Metafile.cs
- ObjectDataSourceEventArgs.cs
- dataobject.cs
- DescendentsWalkerBase.cs
- Parser.cs
- HtmlHistory.cs
- RSAPKCS1SignatureFormatter.cs
- SystemFonts.cs
- SoapReflectionImporter.cs
- ItemList.cs
- ServerProtocol.cs
- StackOverflowException.cs
- NominalTypeEliminator.cs
- Enum.cs
- Image.cs
- Method.cs
- AutoResetEvent.cs
- MaskInputRejectedEventArgs.cs
- ErrorRuntimeConfig.cs
- FixedHyperLink.cs
- SqlDataSourceFilteringEventArgs.cs
- SoapSchemaMember.cs
- DbProviderFactoriesConfigurationHandler.cs
- ReceiveActivityDesignerTheme.cs
- srgsitem.cs
- LogReserveAndAppendState.cs
- CustomMenuItemCollection.cs
- DataListItem.cs
- EventDescriptorCollection.cs
- EncoderReplacementFallback.cs
- SocketCache.cs
- DynamicQueryableWrapper.cs
- TablePattern.cs
- UnmanagedMarshal.cs
- XmlSchemaAny.cs
- RuleInfoComparer.cs
- WindowsFormsHelpers.cs
- TableProviderWrapper.cs
- CustomValidator.cs
- ActivityScheduledRecord.cs
- XmlDataSourceView.cs
- SafeFileMappingHandle.cs