Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / Italic.cs / 1305600 / 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
- MouseActionValueSerializer.cs
- XPathDescendantIterator.cs
- RightsManagementEncryptedStream.cs
- ResourceReferenceKeyNotFoundException.cs
- CallInfo.cs
- RichTextBoxContextMenu.cs
- ListDesigner.cs
- AssociatedControlConverter.cs
- SchemaImporter.cs
- XmlNamespaceManager.cs
- LinkArea.cs
- BaseValidatorDesigner.cs
- Switch.cs
- SafeHGlobalHandleCritical.cs
- EnumValidator.cs
- DrawingServices.cs
- SqlBulkCopyColumnMapping.cs
- DesignOnlyAttribute.cs
- TextRange.cs
- ExceptionValidationRule.cs
- PathFigure.cs
- ForEachAction.cs
- SizeValueSerializer.cs
- IsolatedStorageException.cs
- WeakEventTable.cs
- DefaultProxySection.cs
- CodeVariableDeclarationStatement.cs
- StateMachineAction.cs
- MetabaseReader.cs
- XmlCodeExporter.cs
- HScrollProperties.cs
- ISAPIApplicationHost.cs
- counter.cs
- BinarySerializer.cs
- GridViewRowCollection.cs
- JpegBitmapEncoder.cs
- DbDataSourceEnumerator.cs
- TransactionInterop.cs
- HttpResponseHeader.cs
- Switch.cs
- XmlSchemaSimpleTypeUnion.cs
- PlaceHolder.cs
- FormCollection.cs
- SystemUnicastIPAddressInformation.cs
- XmlSerializableReader.cs
- SerTrace.cs
- ContentDisposition.cs
- Model3DCollection.cs
- LayoutUtils.cs
- UnicastIPAddressInformationCollection.cs
- Cursors.cs
- XmlSchemaSequence.cs
- Single.cs
- Point4D.cs
- WebBrowserNavigatedEventHandler.cs
- ExceptionUtility.cs
- FilteredDataSetHelper.cs
- MarkupObject.cs
- XmlSchemaImporter.cs
- RootBrowserWindowProxy.cs
- TimelineGroup.cs
- ChannelServices.cs
- XPathParser.cs
- HeaderLabel.cs
- OverlappedAsyncResult.cs
- Event.cs
- TitleStyle.cs
- SocketElement.cs
- IOException.cs
- SetterBaseCollection.cs
- FilteredAttributeCollection.cs
- PanelDesigner.cs
- Rules.cs
- MediaElementAutomationPeer.cs
- ExpressionBindingCollection.cs
- ValueQuery.cs
- Pts.cs
- SqlInternalConnectionTds.cs
- ProfileInfo.cs
- SessionStateSection.cs
- XmlDocument.cs
- SqlConnectionString.cs
- CustomExpression.cs
- OwnerDrawPropertyBag.cs
- HierarchicalDataSourceConverter.cs
- ProjectedWrapper.cs
- Control.cs
- SharedDp.cs
- MarshalDirectiveException.cs
- SystemIPAddressInformation.cs
- ClientBuildManager.cs
- DataControlPagerLinkButton.cs
- SessionStateSection.cs
- TextMetrics.cs
- SecondaryViewProvider.cs
- HttpRuntime.cs
- AsynchronousChannelMergeEnumerator.cs
- CalendarDay.cs
- MappedMetaModel.cs
- ObjectHandle.cs