Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Documents / Italic.cs / 1 / Italic.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // Description: Italic element. // Xaml markup helper for indicating italicized content. // Equivalent to a Span with FontStyle property set to FontStyles.Italic. // Can contain other inline elements. // //--------------------------------------------------------------------------- namespace System.Windows.Documents { ////// Italic element - markup helper for indicating italicized content. /// Equivalent to a Span with FontStyle property set to FontStyles.Italic. /// Can contain other inline elements. /// public class Italic : Span { //------------------------------------------------------------------- // // Connstructors // //------------------------------------------------------------------- #region Constructors ////// Static ctor. Initializes property metadata. /// static Italic() { DefaultStyleKeyProperty.OverrideMetadata(typeof(Italic), new FrameworkPropertyMetadata(typeof(Italic))); } ////// Initilizes a new instance of a Italic element /// ////// To become fully functional this element requires at least one other Inline element /// as its child, typically Run with some text. /// In Xaml markup the Italic element may appear without Run child, /// but please note that such Run was implicitly inserted by parser. /// public Italic() : base() { } ////// Initializes a new instance of Italic element and adds a given Inline element as its first child. /// /// /// Inline element added as an initial child to this Italic element /// public Italic(Inline childInline) : base(childInline) { } ////// Creates a new Italic instance. /// /// /// Optional child Inline for the new Italic. May be null. /// /// /// Optional position at which to insert the new Italic. May be null. /// public Italic(Inline childInline, TextPointer insertionPosition) : base(childInline, insertionPosition) { } ////// Creates a new Italic instance covering existing content. /// /// /// Start position of the new Italic. /// /// /// End position of the new Italic. /// ////// start and end must both be parented by the same Paragraph, otherwise /// the method will raise an ArgumentException. /// public Italic(TextPointer start, TextPointer end) : base(start, end) { } #endregion Constructors } } // 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
- SpellerInterop.cs
- TimeSpanValidatorAttribute.cs
- UnmanagedBitmapWrapper.cs
- Set.cs
- NamedElement.cs
- Token.cs
- PolicyConversionContext.cs
- KeyMatchBuilder.cs
- UriExt.cs
- SpellCheck.cs
- WebHeaderCollection.cs
- CalendarDateChangedEventArgs.cs
- WriteFileContext.cs
- XmlNodeReader.cs
- WorkflowPersistenceService.cs
- NodeInfo.cs
- ControlParameter.cs
- SingleObjectCollection.cs
- StateItem.cs
- XpsFilter.cs
- BitSet.cs
- SchemaMerger.cs
- SchemaImporterExtensionElementCollection.cs
- ChangeTracker.cs
- ImpersonationContext.cs
- SQLDouble.cs
- ProcessInfo.cs
- FocusChangedEventArgs.cs
- DescendantBaseQuery.cs
- MaterialCollection.cs
- UInt64Storage.cs
- NotSupportedException.cs
- UnsafeNativeMethods.cs
- WebPartConnectionsCloseVerb.cs
- TextRangeProviderWrapper.cs
- DataPagerCommandEventArgs.cs
- Mouse.cs
- NativeMethods.cs
- ProcessHostServerConfig.cs
- List.cs
- SimpleType.cs
- ClosableStream.cs
- DocumentViewerAutomationPeer.cs
- ScrollableControl.cs
- DirectoryObjectSecurity.cs
- _Connection.cs
- ColorConvertedBitmap.cs
- DocumentViewerHelper.cs
- OutputWindow.cs
- Brushes.cs
- DataRecordInfo.cs
- EventLogTraceListener.cs
- StrokeCollection2.cs
- Enumerable.cs
- PTManager.cs
- QuaternionRotation3D.cs
- CompilerCollection.cs
- PolyQuadraticBezierSegment.cs
- SafeProcessHandle.cs
- MetadataItemEmitter.cs
- ObjectDataProvider.cs
- UnsafePeerToPeerMethods.cs
- Color.cs
- ParallelLoopState.cs
- MimeTypePropertyAttribute.cs
- MatrixTransform.cs
- HtmlInputFile.cs
- PersistenceProviderElement.cs
- DriveNotFoundException.cs
- FtpWebResponse.cs
- CompiledQuery.cs
- ProtocolsSection.cs
- ComponentGuaranteesAttribute.cs
- ScrollableControl.cs
- DataSpaceManager.cs
- GC.cs
- LoadedOrUnloadedOperation.cs
- Lookup.cs
- TypeAccessException.cs
- MarginCollapsingState.cs
- Scheduler.cs
- GrammarBuilderPhrase.cs
- ScrollBarRenderer.cs
- SerializationSectionGroup.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- MultiSelector.cs
- CollectionChange.cs
- Figure.cs
- ValidationHelper.cs
- TypeExtensionConverter.cs
- WeakReferenceEnumerator.cs
- WebPartsPersonalization.cs
- PropertyInformation.cs
- MyContact.cs
- SoapClientMessage.cs
- WebConfigurationHost.cs
- DataFieldCollectionEditor.cs
- PopupRootAutomationPeer.cs
- GatewayDefinition.cs
- DefaultCommandExtensionCallback.cs