Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / textformatting / TextCollapsingProperties.cs / 1305600 / TextCollapsingProperties.cs
//------------------------------------------------------------------------
//
// Microsoft Windows Client Platform
// Copyright (C) Microsoft Corporation, 2004
//
// File: TextCollapsingProperties.cs
//
// Contents: Definition of text collapsing properties and related types
//
// 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;
namespace System.Windows.Media.TextFormatting
{
///
/// Properties of text collapsing
///
public abstract class TextCollapsingProperties
{
///
/// TextFormatter to get width in which specified collapsible range constrained to
///
public abstract double Width
{ get; }
///
/// TextFormatter to get text run used as collapsing symbol
///
public abstract TextRun Symbol
{ get; }
///
/// TextFormatter to get style of collapsing
///
public abstract TextCollapsingStyle Style
{ get; }
}
///
/// Range of characters and its width measurement where collapsing has happened within a line
///
public sealed class TextCollapsedRange
{
private int _cp;
private int _length;
private double _width;
///
/// Construct a collapsed range
///
/// first character collapsed
/// number of characters collapsed
/// total width of collapsed characters
internal TextCollapsedRange(
int cp,
int length,
double width
)
{
_cp = cp;
_length = length;
_width = width;
}
///
/// text source character index to the first character in range that is collapsed
///
public int TextSourceCharacterIndex
{
get { return _cp; }
}
///
/// number of characters collapsed
///
public int Length
{
get { return _length; }
}
///
/// total width of collapsed character range
///
public double Width
{
get { return _width; }
}
}
///
/// Text collapsing style
///
public enum TextCollapsingStyle
{
///
/// Collapse trailing characters
///
TrailingCharacter,
///
/// Collapse trailing words
///
TrailingWord,
}
}
// 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
- PersonalizableAttribute.cs
- SqlTypesSchemaImporter.cs
- QuaternionRotation3D.cs
- PowerStatus.cs
- SapiInterop.cs
- webclient.cs
- WorkflowInvoker.cs
- RelationshipFixer.cs
- KeyValueConfigurationElement.cs
- DataSvcMapFileSerializer.cs
- WriteableOnDemandStream.cs
- CompilerWrapper.cs
- ValueTypeFixupInfo.cs
- EntityStoreSchemaFilterEntry.cs
- TemplateControl.cs
- regiisutil.cs
- HandlerBase.cs
- ContainerParaClient.cs
- StyleTypedPropertyAttribute.cs
- UriExt.cs
- SafeFileHandle.cs
- CriticalHandle.cs
- SettingsBase.cs
- Timer.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- OracleConnectionStringBuilder.cs
- RootProfilePropertySettingsCollection.cs
- NativeRightsManagementAPIsStructures.cs
- WindowsStatusBar.cs
- ImpersonationContext.cs
- WizardPanel.cs
- Oci.cs
- DbgCompiler.cs
- OrderedDictionaryStateHelper.cs
- ProtocolsConfiguration.cs
- TextWriterTraceListener.cs
- shaperfactory.cs
- SortedSetDebugView.cs
- ProcessModuleCollection.cs
- Monitor.cs
- EntityDataSourceWrapperCollection.cs
- XPathArrayIterator.cs
- AsyncPostBackErrorEventArgs.cs
- SqlResolver.cs
- Path.cs
- OledbConnectionStringbuilder.cs
- DataGridViewRowsAddedEventArgs.cs
- RoutingBehavior.cs
- DataViewListener.cs
- FunctionDetailsReader.cs
- ProcessRequestArgs.cs
- TemplateBindingExpressionConverter.cs
- ReadWriteObjectLock.cs
- ObjectSet.cs
- BaseAppDomainProtocolHandler.cs
- KeyEvent.cs
- ObjectTag.cs
- InternalBufferOverflowException.cs
- TreeIterators.cs
- InkSerializer.cs
- ObjectQueryProvider.cs
- RuleSetCollection.cs
- ToolStripCollectionEditor.cs
- ColumnHeaderConverter.cs
- TaskDesigner.cs
- TrayIconDesigner.cs
- BookmarkList.cs
- Timer.cs
- PrivateFontCollection.cs
- MonitorWrapper.cs
- HtmlControl.cs
- DataTransferEventArgs.cs
- EntityDataSourceDataSelection.cs
- View.cs
- PointLightBase.cs
- FontCollection.cs
- DrawToolTipEventArgs.cs
- DurableInstance.cs
- ReadOnlyHierarchicalDataSource.cs
- ConditionCollection.cs
- PackUriHelper.cs
- SafeViewOfFileHandle.cs
- SubclassTypeValidatorAttribute.cs
- ExtenderProvidedPropertyAttribute.cs
- XmlEncodedRawTextWriter.cs
- ModelTypeConverter.cs
- TreeNodeEventArgs.cs
- QueuePropertyVariants.cs
- UnsupportedPolicyOptionsException.cs
- BoolLiteral.cs
- CompensationTokenData.cs
- ToolboxDataAttribute.cs
- EntityRecordInfo.cs
- LineInfo.cs
- SettingsPropertyValue.cs
- arabicshape.cs
- ConfigWriter.cs
- ReverseQueryOperator.cs
- XhtmlBasicControlAdapter.cs
- SpecialFolderEnumConverter.cs