Intersoft ClientUI Documentation
Bold Class
Members  See Also  Send Feedback
Intersoft.Client.Documents Namespace : Bold Class






An inline-level flow content element which causes content to render with a bold font weight.

Object Model

Bold Class

Syntax

Visual Basic (Declaration) 
Public Class Bold 
   Inherits Span
Visual Basic (Usage)Copy Code
Dim instance As Bold
C# 
public class Bold : Span 
Delphi 
public class Bold = class(Span)
JScript 
public class Bold extends Span
Managed Extensions for C++ 
public __gc class Bold : public Span 
C++/CLI 
public ref class Bold : public Span 

Remarks

Bold element automatically set its content to render with a bold font weight. Instead of using Span with FontWeight property specified, you can simply use Bold element. Since Bold is inherited from Span, it can also contain multiple Inline elements. Bold is used in a similar manner to the <STRONG> tag in HTML.

XAML Copy Code
<Intersoft:FlowDocument>
    <Intersoft:Paragraph>
        <Intersoft:Bold>
            <Intersoft:Run>
                Hello World!
            </Intersoft:Run>
        </Intersoft:Bold>
    </Intersoft:Paragraph>
</Intersoft:FlowDocument>

Inheritance Hierarchy

System.Object
   System.Windows.DependencyObject
      Intersoft.Client.Documents.TextElement
         Intersoft.Client.Documents.Inline
            Intersoft.Client.Documents.Span
               Intersoft.Client.Documents.Bold

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.