Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / Bold.cs / 1305600 / Bold.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // Description: Bold element. // Xaml markup helper for indicating bolded content. // Equivalent to a Span with FontWeight property set to FontWeights.Bold. // Can contain other inline elements. // //--------------------------------------------------------------------------- namespace System.Windows.Documents { ////// Bold element - markup helper for indicating bolded content. /// Equivalent to a Span with FontWeight property set to FontWeights.Bold. /// Can contain other inline elements. /// public class Bold : Span { //------------------------------------------------------------------- // // Connstructors // //------------------------------------------------------------------- #region Constructors ////// Static ctor. Initializes property metadata. /// static Bold() { DefaultStyleKeyProperty.OverrideMetadata(typeof(Bold), new FrameworkPropertyMetadata(typeof(Bold))); } ////// Initilizes a new instance of a Bold 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 Bold element may appear without Run child, /// but please note that such Run was implicitly inserted by parser. /// public Bold() : base() { } ////// Initializes a new instance of Bold element and adds a given Inline element as its first child. /// /// /// Inline element added as an initial child to this Bold element /// public Bold(Inline childInline) : base(childInline) { } ////// Creates a new Bold instance. /// /// /// Optional child Inline for the new Bold. May be null. /// /// /// Optional position at which to insert the new Bold. May be null. /// public Bold(Inline childInline, TextPointer insertionPosition) : base(childInline, insertionPosition) { } ////// Creates a new Span instance covering existing content. /// /// /// Start position of the new Span. /// /// /// End position of the new Span. /// ////// start and end must both be parented by the same Paragraph, otherwise /// the method will raise an ArgumentException. /// public Bold(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: Bold element. // Xaml markup helper for indicating bolded content. // Equivalent to a Span with FontWeight property set to FontWeights.Bold. // Can contain other inline elements. // //--------------------------------------------------------------------------- namespace System.Windows.Documents { ////// Bold element - markup helper for indicating bolded content. /// Equivalent to a Span with FontWeight property set to FontWeights.Bold. /// Can contain other inline elements. /// public class Bold : Span { //------------------------------------------------------------------- // // Connstructors // //------------------------------------------------------------------- #region Constructors ////// Static ctor. Initializes property metadata. /// static Bold() { DefaultStyleKeyProperty.OverrideMetadata(typeof(Bold), new FrameworkPropertyMetadata(typeof(Bold))); } ////// Initilizes a new instance of a Bold 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 Bold element may appear without Run child, /// but please note that such Run was implicitly inserted by parser. /// public Bold() : base() { } ////// Initializes a new instance of Bold element and adds a given Inline element as its first child. /// /// /// Inline element added as an initial child to this Bold element /// public Bold(Inline childInline) : base(childInline) { } ////// Creates a new Bold instance. /// /// /// Optional child Inline for the new Bold. May be null. /// /// /// Optional position at which to insert the new Bold. May be null. /// public Bold(Inline childInline, TextPointer insertionPosition) : base(childInline, insertionPosition) { } ////// Creates a new Span instance covering existing content. /// /// /// Start position of the new Span. /// /// /// End position of the new Span. /// ////// start and end must both be parented by the same Paragraph, otherwise /// the method will raise an ArgumentException. /// public Bold(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
- ListViewGroupConverter.cs
- ImageKeyConverter.cs
- GridViewSelectEventArgs.cs
- VectorValueSerializer.cs
- oledbconnectionstring.cs
- XDeferredAxisSource.cs
- SecureStringHasher.cs
- Rect.cs
- ComponentChangedEvent.cs
- StackOverflowException.cs
- BaseProcessProtocolHandler.cs
- Formatter.cs
- SqlDependency.cs
- _NativeSSPI.cs
- SortedDictionary.cs
- TextParaClient.cs
- CounterCreationDataCollection.cs
- ButtonBase.cs
- SHA1CryptoServiceProvider.cs
- PublisherMembershipCondition.cs
- TdsParserStateObject.cs
- AttributeQuery.cs
- ForwardPositionQuery.cs
- SecUtil.cs
- RecordConverter.cs
- NavigationProperty.cs
- UrlRoutingModule.cs
- XamlRtfConverter.cs
- TableParagraph.cs
- XmlTextReader.cs
- RealizationContext.cs
- ListSourceHelper.cs
- FacetValues.cs
- DataListDesigner.cs
- uribuilder.cs
- CompilerGlobalScopeAttribute.cs
- AppDomainManager.cs
- DesignerSerializationOptionsAttribute.cs
- LiteralTextContainerControlBuilder.cs
- RedirectionProxy.cs
- XmlChildEnumerator.cs
- DataServiceProcessingPipelineEventArgs.cs
- PermissionRequestEvidence.cs
- WebHeaderCollection.cs
- NonClientArea.cs
- SystemParameters.cs
- PointAnimationBase.cs
- AssociationSetMetadata.cs
- CodeParameterDeclarationExpressionCollection.cs
- Utils.cs
- GridPattern.cs
- IgnoreSectionHandler.cs
- QuadraticBezierSegment.cs
- Calendar.cs
- Point4DValueSerializer.cs
- SystemIPInterfaceStatistics.cs
- CodeSnippetStatement.cs
- CodeEntryPointMethod.cs
- hebrewshape.cs
- IxmlLineInfo.cs
- LoadWorkflowByKeyAsyncResult.cs
- LinearGradientBrush.cs
- DeploymentSection.cs
- NameSpaceExtractor.cs
- QilChoice.cs
- DataGridViewCheckBoxCell.cs
- DesignerProperties.cs
- SystemInfo.cs
- SapiGrammar.cs
- VersionedStreamOwner.cs
- BatchParser.cs
- AssemblyInfo.cs
- DriveInfo.cs
- TextEditorParagraphs.cs
- CustomAttributeFormatException.cs
- SystemResourceHost.cs
- URLAttribute.cs
- PartialCachingAttribute.cs
- EncoderNLS.cs
- NullableBoolConverter.cs
- XmlWhitespace.cs
- CodeFieldReferenceExpression.cs
- TypeLoadException.cs
- Perspective.cs
- NotCondition.cs
- CellParaClient.cs
- ToolStrip.cs
- ListViewEditEventArgs.cs
- ZoneLinkButton.cs
- TextEditorLists.cs
- Viewport3DVisual.cs
- HtmlPanelAdapter.cs
- IdnMapping.cs
- ConfigXmlComment.cs
- BitmapEffectGroup.cs
- FileDialogCustomPlacesCollection.cs
- HttpCachePolicyElement.cs
- PrimitiveXmlSerializers.cs
- ThemeDictionaryExtension.cs
- CreateUserWizardStep.cs