Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EntityDataSourceReferenceGroup.cs
- XslTransformFileEditor.cs
- dtdvalidator.cs
- TextEditorSpelling.cs
- PkcsUtils.cs
- TypeSystem.cs
- OLEDB_Enum.cs
- RotationValidation.cs
- ObjectRef.cs
- MobileCapabilities.cs
- CopyNamespacesAction.cs
- DataGridViewCellCollection.cs
- DataViewManagerListItemTypeDescriptor.cs
- TextRangeAdaptor.cs
- EntityType.cs
- RouteItem.cs
- Size3D.cs
- OutputCacheSettingsSection.cs
- SchemaExporter.cs
- Encoding.cs
- TextDecorationCollection.cs
- URLEditor.cs
- StringKeyFrameCollection.cs
- HwndStylusInputProvider.cs
- PointAnimation.cs
- TextEmbeddedObject.cs
- MemberInfoSerializationHolder.cs
- HyperLinkField.cs
- GACMembershipCondition.cs
- ExpanderAutomationPeer.cs
- FontSource.cs
- HatchBrush.cs
- MonitorWrapper.cs
- HttpDebugHandler.cs
- ImageButton.cs
- MappingException.cs
- Matrix.cs
- MetadataCache.cs
- MetadataReference.cs
- Attribute.cs
- TransformerInfo.cs
- LayoutDump.cs
- Assert.cs
- WebResourceUtil.cs
- PathFigureCollectionConverter.cs
- ScopeElement.cs
- CompilerCollection.cs
- TraceHandlerErrorFormatter.cs
- TextTreeTextNode.cs
- MSAAWinEventWrap.cs
- RealizedColumnsBlock.cs
- webclient.cs
- DataGridViewAddColumnDialog.cs
- GenericWebPart.cs
- ParserContext.cs
- IndentedWriter.cs
- ToolStripScrollButton.cs
- PropertyExpression.cs
- DeviceSpecificChoiceCollection.cs
- WaitHandle.cs
- SiteMapNodeItemEventArgs.cs
- LinkedList.cs
- TextTreeRootTextBlock.cs
- TableCellCollection.cs
- SmiXetterAccessMap.cs
- SqlConnectionStringBuilder.cs
- SqlUtils.cs
- OracleTimeSpan.cs
- ControlUtil.cs
- DbUpdateCommandTree.cs
- DynamicField.cs
- DefaultValueTypeConverter.cs
- RegexCapture.cs
- Accessible.cs
- DefaultProxySection.cs
- OutKeywords.cs
- Bits.cs
- XsltLoader.cs
- WebConfigurationFileMap.cs
- ErrorWrapper.cs
- FixedSOMTableCell.cs
- X509Certificate.cs
- CommentGlyph.cs
- dtdvalidator.cs
- ToolStripProgressBar.cs
- ImportContext.cs
- ForceCopyBuildProvider.cs
- TypeToken.cs
- dataSvcMapFileLoader.cs
- SystemIPGlobalProperties.cs
- WebPartCloseVerb.cs
- WebScriptEndpoint.cs
- MachineKeyConverter.cs
- TimeSpanConverter.cs
- Stackframe.cs
- UnsignedPublishLicense.cs
- SynchronizedDispatch.cs
- MethodBody.cs
- RedirectionProxy.cs
- EventDescriptorCollection.cs