Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / 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. //---------------------------------------------------------------------------- // // 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
- WebBrowser.cs
- ImageCodecInfo.cs
- RegexWriter.cs
- KeyFrames.cs
- UrlAuthorizationModule.cs
- TreeViewTemplateSelector.cs
- ChildDocumentBlock.cs
- DoubleStorage.cs
- MetaTable.cs
- SkewTransform.cs
- HtmlContainerControl.cs
- Int16Storage.cs
- SqlProfileProvider.cs
- RemoteWebConfigurationHost.cs
- XslException.cs
- TaskFileService.cs
- SequentialWorkflowHeaderFooter.cs
- TargetConverter.cs
- SchemaNotation.cs
- CompilerInfo.cs
- ConfigurationStrings.cs
- PingOptions.cs
- StringValueSerializer.cs
- MaxSessionCountExceededException.cs
- ViewSimplifier.cs
- StringCollectionMarkupSerializer.cs
- Int32CollectionConverter.cs
- ScriptingProfileServiceSection.cs
- DataGridViewSelectedRowCollection.cs
- OverrideMode.cs
- BrowserCapabilitiesFactoryBase.cs
- XmlILTrace.cs
- FileSystemInfo.cs
- PropertiesTab.cs
- _NegoState.cs
- Base64Encoding.cs
- GestureRecognizer.cs
- CreateDataSourceDialog.cs
- ParenthesizePropertyNameAttribute.cs
- StringInfo.cs
- XpsResourcePolicy.cs
- Message.cs
- Size3DConverter.cs
- StronglyTypedResourceBuilder.cs
- StylusOverProperty.cs
- TrackingLocationCollection.cs
- MetadataCacheItem.cs
- NumberSubstitution.cs
- PrivacyNoticeBindingElement.cs
- HitTestParameters.cs
- ToolStripHighContrastRenderer.cs
- WindowsSpinner.cs
- UrlPath.cs
- ButtonChrome.cs
- MappingModelBuildProvider.cs
- DataGridViewRowStateChangedEventArgs.cs
- TreeViewImageKeyConverter.cs
- SelectionListComponentEditor.cs
- EpmSyndicationContentDeSerializer.cs
- ObjectStateManagerMetadata.cs
- WindowsTokenRoleProvider.cs
- XmlSchemaComplexContentExtension.cs
- DataBindingsDialog.cs
- WindowsFormsHost.cs
- SecurityRuntime.cs
- StylusLogic.cs
- IdnElement.cs
- SoapReflectionImporter.cs
- CommentAction.cs
- MemoryStream.cs
- MessageFormatterConverter.cs
- IMembershipProvider.cs
- DataBindingCollection.cs
- SynchronizingStream.cs
- BoundsDrawingContextWalker.cs
- UnsafeNativeMethods.cs
- DataServiceRequestOfT.cs
- MailMessage.cs
- RegisteredScript.cs
- NamespaceDisplayAutomationPeer.cs
- ISFTagAndGuidCache.cs
- PowerStatus.cs
- DbUpdateCommandTree.cs
- sqlpipe.cs
- OdbcRowUpdatingEvent.cs
- MasterPageParser.cs
- QilLiteral.cs
- LinqDataSourceUpdateEventArgs.cs
- WebPartsSection.cs
- PenContext.cs
- StandardMenuStripVerb.cs
- OneOfScalarConst.cs
- XmlSchemaAnnotation.cs
- MinimizableAttributeTypeConverter.cs
- reliableinputsessionchannel.cs
- QueryConverter.cs
- SessionStateModule.cs
- HwndSourceKeyboardInputSite.cs
- SelectionPattern.cs
- VirtualPathExtension.cs