Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / textformatting / TextSimpleMarkerProperties.cs / 1305600 / TextSimpleMarkerProperties.cs
//------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation, 2004 // // File: TextSimpleMarkerProperties.cs // // Contents: Generic implementation of text marker properties // // 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 MS.Internal.TextFormatting; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media.TextFormatting { ////// Generic implementation of text marker properties /// public class TextSimpleMarkerProperties : TextMarkerProperties { private double _offset; private TextSource _textSource; ////// Construct a text marker object /// /// marker style /// distance from line start to the end of the marker symbol /// autonumbering counter of counter-style marker /// text paragraph properties public TextSimpleMarkerProperties( TextMarkerStyle style, double offset, int autoNumberingIndex, TextParagraphProperties textParagraphProperties ) { if (textParagraphProperties == null) throw new ArgumentNullException("textParagraphProperties"); _offset = offset; if (style != TextMarkerStyle.None) { if (TextMarkerSource.IsKnownSymbolMarkerStyle(style)) { // autoNumberingIndex is ignored } else if (TextMarkerSource.IsKnownIndexMarkerStyle(style)) { // validate autoNumberingIndex if (autoNumberingIndex < 1) { throw new ArgumentOutOfRangeException("autoNumberingIndex", SR.Get(SRID.ParameterCannotBeLessThan, 1)); } } else { // invalid style throw new ArgumentException(SR.Get(SRID.Enum_Invalid, typeof(TextMarkerStyle)), "style"); } _textSource = new TextMarkerSource( textParagraphProperties, style, autoNumberingIndex ); } } ////// Distance from line start to the end of the marker symbol /// public sealed override double Offset { get { return _offset; } } ////// Source of text runs used for text marker /// public sealed override TextSource TextSource { get { return _textSource; } } } } // 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: TextSimpleMarkerProperties.cs // // Contents: Generic implementation of text marker properties // // 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 MS.Internal.TextFormatting; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media.TextFormatting { ////// Generic implementation of text marker properties /// public class TextSimpleMarkerProperties : TextMarkerProperties { private double _offset; private TextSource _textSource; ////// Construct a text marker object /// /// marker style /// distance from line start to the end of the marker symbol /// autonumbering counter of counter-style marker /// text paragraph properties public TextSimpleMarkerProperties( TextMarkerStyle style, double offset, int autoNumberingIndex, TextParagraphProperties textParagraphProperties ) { if (textParagraphProperties == null) throw new ArgumentNullException("textParagraphProperties"); _offset = offset; if (style != TextMarkerStyle.None) { if (TextMarkerSource.IsKnownSymbolMarkerStyle(style)) { // autoNumberingIndex is ignored } else if (TextMarkerSource.IsKnownIndexMarkerStyle(style)) { // validate autoNumberingIndex if (autoNumberingIndex < 1) { throw new ArgumentOutOfRangeException("autoNumberingIndex", SR.Get(SRID.ParameterCannotBeLessThan, 1)); } } else { // invalid style throw new ArgumentException(SR.Get(SRID.Enum_Invalid, typeof(TextMarkerStyle)), "style"); } _textSource = new TextMarkerSource( textParagraphProperties, style, autoNumberingIndex ); } } ////// Distance from line start to the end of the marker symbol /// public sealed override double Offset { get { return _offset; } } ////// Source of text runs used for text marker /// public sealed override TextSource TextSource { get { return _textSource; } } } } // 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
- DocumentGridPage.cs
- RawStylusInputCustomDataList.cs
- BufferedGraphics.cs
- BasePropertyDescriptor.cs
- ScrollItemProviderWrapper.cs
- TemplateColumn.cs
- GridViewCommandEventArgs.cs
- ReflectionTypeLoadException.cs
- KeyValueSerializer.cs
- BooleanExpr.cs
- XmlWriterSettings.cs
- ListItem.cs
- Window.cs
- ListChangedEventArgs.cs
- ReaderWriterLockWrapper.cs
- safelink.cs
- WebUtil.cs
- CollectionBuilder.cs
- ProtocolsConfigurationHandler.cs
- XmlIterators.cs
- BCLDebug.cs
- CustomMenuItemCollection.cs
- FilterInvalidBodyAccessException.cs
- BaseCAMarshaler.cs
- Nullable.cs
- ParserContext.cs
- _BaseOverlappedAsyncResult.cs
- UIntPtr.cs
- ContentElement.cs
- TranslateTransform.cs
- BevelBitmapEffect.cs
- WindowsFormsLinkLabel.cs
- DataGridViewLinkCell.cs
- TemplateKeyConverter.cs
- FixedSOMPageConstructor.cs
- LineInfo.cs
- XmlArrayItemAttributes.cs
- RichTextBoxAutomationPeer.cs
- GlyphingCache.cs
- HttpPostedFile.cs
- SessionEndingCancelEventArgs.cs
- HelpInfo.cs
- PaginationProgressEventArgs.cs
- TransactionState.cs
- RemoteHelper.cs
- NotImplementedException.cs
- EventQueueState.cs
- LicFileLicenseProvider.cs
- ApplicationFileParser.cs
- XmlSchemaValidator.cs
- DataServiceBuildProvider.cs
- AvTrace.cs
- DataGridViewButtonCell.cs
- CompressStream.cs
- XmlC14NWriter.cs
- PropertyTabChangedEvent.cs
- ProfileSection.cs
- SqlUnionizer.cs
- TransformedBitmap.cs
- AssemblyUtil.cs
- OleDbFactory.cs
- DbProviderManifest.cs
- XmlWriterTraceListener.cs
- WindowsButton.cs
- Int64Converter.cs
- AccessibleObject.cs
- LifetimeServices.cs
- PixelFormats.cs
- PersistenceContextEnlistment.cs
- Identifier.cs
- BitmapEditor.cs
- PrivateFontCollection.cs
- RegexMatch.cs
- TypeGeneratedEventArgs.cs
- WebPartTransformerCollection.cs
- WaveHeader.cs
- BitSet.cs
- Binding.cs
- WebScriptMetadataMessageEncoderFactory.cs
- Application.cs
- SRef.cs
- SqlStream.cs
- ELinqQueryState.cs
- CompileXomlTask.cs
- RequestNavigateEventArgs.cs
- XslTransform.cs
- StretchValidation.cs
- GeometryModel3D.cs
- HtmlTableRowCollection.cs
- SynchronizationLockException.cs
- BezierSegment.cs
- DataGridViewImageCell.cs
- WebPartEditVerb.cs
- JumpList.cs
- SqlConnectionManager.cs
- webproxy.cs
- SecurityAppliedMessage.cs
- Vector3DCollectionConverter.cs
- IntellisenseTextBox.designer.cs
- MultitargetUtil.cs