Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Documents / Bold.cs / 1 / 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.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WhitespaceRule.cs
- EncodingConverter.cs
- CancelEventArgs.cs
- DataGridViewLinkColumn.cs
- FolderBrowserDialog.cs
- CommunicationObjectFaultedException.cs
- SiteMapSection.cs
- HyperLink.cs
- FileSystemEventArgs.cs
- TextEditorThreadLocalStore.cs
- XhtmlBasicTextViewAdapter.cs
- SmiEventStream.cs
- SuppressMessageAttribute.cs
- ComplexLine.cs
- BitHelper.cs
- AssemblyBuilderData.cs
- CounterSampleCalculator.cs
- CharacterShapingProperties.cs
- HttpServerVarsCollection.cs
- DataError.cs
- PixelFormats.cs
- SmiEventSink.cs
- EncoderFallback.cs
- ClientRuntimeConfig.cs
- MouseActionValueSerializer.cs
- Page.cs
- DataRecord.cs
- WebServiceReceive.cs
- ClockGroup.cs
- DateTimeSerializationSection.cs
- ComContractElementCollection.cs
- ProfileProvider.cs
- ThreadSafeMessageFilterTable.cs
- SqlPersonalizationProvider.cs
- ConfigurationElementCollection.cs
- C14NUtil.cs
- ValidatorCompatibilityHelper.cs
- XmlSchemaComplexContentExtension.cs
- MediaTimeline.cs
- RequestCacheValidator.cs
- Decorator.cs
- ToolStripTextBox.cs
- ResolvedKeyFrameEntry.cs
- WebException.cs
- TrailingSpaceComparer.cs
- CFStream.cs
- ControlValuePropertyAttribute.cs
- EventArgs.cs
- ValidationResult.cs
- ListViewInsertEventArgs.cs
- TableItemPattern.cs
- SecurityKeyType.cs
- ReflectEventDescriptor.cs
- UshortList2.cs
- ChangeBlockUndoRecord.cs
- ResourceManagerWrapper.cs
- TimeSpanConverter.cs
- WebPartTransformerCollection.cs
- DNS.cs
- SoapReflectionImporter.cs
- UpdatePanelTriggerCollection.cs
- WCFBuildProvider.cs
- TemplateNameScope.cs
- SystemWebSectionGroup.cs
- OuterGlowBitmapEffect.cs
- WebPartRestoreVerb.cs
- SafeSystemMetrics.cs
- WindowsToolbarAsMenu.cs
- StrokeCollection2.cs
- DelegatingChannelListener.cs
- ManualResetEventSlim.cs
- SettingsSection.cs
- PackWebRequest.cs
- StylusOverProperty.cs
- ValidatorCompatibilityHelper.cs
- ModuleConfigurationInfo.cs
- XPathNode.cs
- DataServiceRequestArgs.cs
- TypeSystemProvider.cs
- CultureInfoConverter.cs
- ContainsRowNumberChecker.cs
- QueryAsyncResult.cs
- Invariant.cs
- DataDocumentXPathNavigator.cs
- XmlNamespaceMapping.cs
- XmlEntity.cs
- FixedHighlight.cs
- MenuTracker.cs
- ObjectMemberMapping.cs
- SmtpTransport.cs
- WebUtility.cs
- ThreadLocal.cs
- RightNameExpirationInfoPair.cs
- exports.cs
- DependencyPropertyKey.cs
- COSERVERINFO.cs
- Char.cs
- TraceData.cs
- DataGridViewColumn.cs
- ToolStripItemDataObject.cs