Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / 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: 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
- TypeConverterAttribute.cs
- Propagator.ExtentPlaceholderCreator.cs
- VarRemapper.cs
- DataGridToolTip.cs
- CapacityStreamGeometryContext.cs
- SecureConversationVersion.cs
- BookmarkOptionsHelper.cs
- BasePattern.cs
- CommandBindingCollection.cs
- FileDataSourceCache.cs
- UriWriter.cs
- SqlDataSource.cs
- PromptEventArgs.cs
- TextWriterEngine.cs
- ApplicationSettingsBase.cs
- PropagatorResult.cs
- SymDocumentType.cs
- TypeLoadException.cs
- FileChangesMonitor.cs
- PingReply.cs
- TypedReference.cs
- SolidColorBrush.cs
- BufferedStream.cs
- ParameterRetriever.cs
- DataListAutoFormat.cs
- ToolStripItem.cs
- RuleProcessor.cs
- ResourceReferenceExpressionConverter.cs
- ScriptComponentDescriptor.cs
- SafeNativeMethods.cs
- EventHandlerList.cs
- DbReferenceCollection.cs
- ZeroOpNode.cs
- DataGridViewComboBoxColumn.cs
- TitleStyle.cs
- SortDescriptionCollection.cs
- HandleExceptionArgs.cs
- WorkflowApplicationAbortedException.cs
- IImplicitResourceProvider.cs
- SecUtil.cs
- SpellerHighlightLayer.cs
- ChildrenQuery.cs
- ClientSettings.cs
- PopupControlService.cs
- ProxyAttribute.cs
- DataTablePropertyDescriptor.cs
- MailWriter.cs
- CatalogZoneDesigner.cs
- DataBinding.cs
- AssemblyResourceLoader.cs
- FixedTextBuilder.cs
- ConfigurationStrings.cs
- NullableDoubleAverageAggregationOperator.cs
- MatrixTransform.cs
- SqlDataSourceWizardForm.cs
- TextControl.cs
- ChangesetResponse.cs
- GcSettings.cs
- PeerUnsafeNativeCryptMethods.cs
- XPathDocumentIterator.cs
- MenuTracker.cs
- AdapterDictionary.cs
- RNGCryptoServiceProvider.cs
- InProcStateClientManager.cs
- PropertyGridEditorPart.cs
- Int32CollectionValueSerializer.cs
- DataGridViewRow.cs
- Vertex.cs
- DataGridDesigner.cs
- ApplyImportsAction.cs
- LabelLiteral.cs
- GridViewHeaderRowPresenter.cs
- HtmlContainerControl.cs
- InvocationExpression.cs
- GroupStyle.cs
- Mapping.cs
- IssuanceLicense.cs
- InputLanguageProfileNotifySink.cs
- ISessionStateStore.cs
- datacache.cs
- ADMembershipUser.cs
- StreamResourceInfo.cs
- TypeSystemHelpers.cs
- NameValueConfigurationCollection.cs
- ListViewDeletedEventArgs.cs
- LayoutUtils.cs
- QueryCacheEntry.cs
- GridViewRowCollection.cs
- MetadataUtilsSmi.cs
- validationstate.cs
- ObjectContext.cs
- PropertyValueUIItem.cs
- WpfSharedBamlSchemaContext.cs
- ServiceMetadataExtension.cs
- ReadOnlyHierarchicalDataSource.cs
- EdmScalarPropertyAttribute.cs
- BinaryObjectReader.cs
- ScriptingScriptResourceHandlerSection.cs
- RenameRuleObjectDialog.Designer.cs
- EncodingInfo.cs