Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / textformatting / TextHidden.cs / 1305600 / TextHidden.cs
//------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation, 2004 // // File: TextHidden.cs // // Contents: Implementation of text hidden content // // Spec: http://team/sites/Avalon/Specs/Text%20Formatting%20API.doc // // Created: 1-2-2004 Worachai Chaoweeraprasit (wchao) // //----------------------------------------------------------------------- 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. //------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation, 2004 // // File: TextHidden.cs // // Contents: Implementation of text hidden content // // Spec: http://team/sites/Avalon/Specs/Text%20Formatting%20API.doc // // Created: 1-2-2004 Worachai Chaoweeraprasit (wchao) // //----------------------------------------------------------------------- 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
- BrushMappingModeValidation.cs
- ImageKeyConverter.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- DrawingServices.cs
- XmlSchemaChoice.cs
- ContractNamespaceAttribute.cs
- AdapterUtil.cs
- VirtualPathProvider.cs
- ApplicationServiceManager.cs
- CompoundFileIOPermission.cs
- PageAdapter.cs
- CustomExpressionEventArgs.cs
- ScheduleChanges.cs
- ArgumentOutOfRangeException.cs
- RegexGroup.cs
- DynamicPhysicalDiscoSearcher.cs
- Cursor.cs
- RsaSecurityKey.cs
- GACMembershipCondition.cs
- SimpleType.cs
- ControlBuilderAttribute.cs
- TypedColumnHandler.cs
- ActionFrame.cs
- OverrideMode.cs
- DataAccessor.cs
- PrinterSettings.cs
- AutomationIdentifier.cs
- StorageBasedPackageProperties.cs
- CodeCompiler.cs
- ResourcesGenerator.cs
- DecoderNLS.cs
- KeyTimeConverter.cs
- ActiveXSite.cs
- VirtualizingPanel.cs
- PointHitTestResult.cs
- PnrpPeerResolverBindingElement.cs
- FixedTextContainer.cs
- Point.cs
- NetworkInformationException.cs
- UInt16Converter.cs
- FtpWebResponse.cs
- DisplayClaim.cs
- SqlTopReducer.cs
- BindableTemplateBuilder.cs
- TraceEventCache.cs
- StrongNameHelpers.cs
- ImageMapEventArgs.cs
- CachedTypeface.cs
- XmlILIndex.cs
- PointCollection.cs
- CacheMemory.cs
- EncodingNLS.cs
- StringBuilder.cs
- MutexSecurity.cs
- GACMembershipCondition.cs
- UIElementAutomationPeer.cs
- CipherData.cs
- WebProxyScriptElement.cs
- SoapMessage.cs
- ListenerAdapterBase.cs
- WhitespaceReader.cs
- BuildProvider.cs
- ZipIOExtraFieldPaddingElement.cs
- X500Name.cs
- UseLicense.cs
- SqlTypeSystemProvider.cs
- RuleConditionDialog.Designer.cs
- InvokePatternIdentifiers.cs
- Boolean.cs
- BindingObserver.cs
- BamlLocalizationDictionary.cs
- InfoCardTraceRecord.cs
- NextPreviousPagerField.cs
- COM2TypeInfoProcessor.cs
- ItemCollection.cs
- AuthorizationSection.cs
- SQLSingleStorage.cs
- SqlDataSourceEnumerator.cs
- FacetEnabledSchemaElement.cs
- CodeGotoStatement.cs
- InternalResources.cs
- OleDbMetaDataFactory.cs
- AsyncOperationContext.cs
- TextRangeSerialization.cs
- XhtmlTextWriter.cs
- SerializationException.cs
- FtpWebRequest.cs
- HtmlEmptyTagControlBuilder.cs
- PostBackOptions.cs
- SurrogateChar.cs
- AuthorizationRule.cs
- OuterGlowBitmapEffect.cs
- OleDbConnectionFactory.cs
- WindowsScroll.cs
- CacheDependency.cs
- InputMethodStateChangeEventArgs.cs
- ListItemParagraph.cs
- GroupAggregateExpr.cs
- DbSetClause.cs
- MaskPropertyEditor.cs